We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cb5928 commit 6739594Copy full SHA for 6739594
README.md
@@ -189,8 +189,7 @@ const handler = createMcpHandler(
189
const verifyToken = async (req: Request, bearerToken?: string): Promise<AuthInfo | undefined> => {
190
if (!bearerToken) return undefined;
191
192
- // TODO: Replace with actual token verification logic
193
- // This is just an example implementation
+ // Replace this example with actual token verification logic
194
// Return an AuthInfo object if verification succeeds
195
// Otherwise, return undefined
196
const isValid = bearerToken.startsWith('__TEST_VALUE__');
0 commit comments