From 93911d683850b18ac44f5abe61654ab656bf5fc3 Mon Sep 17 00:00:00 2001 From: Evandro Camargo Date: Mon, 16 Feb 2026 22:17:17 -0300 Subject: [PATCH] remove extra comments --- apps/mcp/src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/mcp/src/index.ts b/apps/mcp/src/index.ts index f0bfa60d..e717b31f 100644 --- a/apps/mcp/src/index.ts +++ b/apps/mcp/src/index.ts @@ -100,9 +100,6 @@ const mcpHandler = SupermemoryMCP.mount("/mcp", { }, }) -// MCP request handler — registered on both bare and wildcard paths -// to comply with MCP Streamable HTTP transport spec, which requires -// a single endpoint that accepts POST, GET, and DELETE. const handleMcpRequest = async (c: Context<{ Bindings: Bindings }>) => { const authHeader = c.req.header("Authorization") const token = authHeader?.replace(/^Bearer\s+/i, "")