From 8cf5ccb4a38004080047f58f2a28e49005e6572c Mon Sep 17 00:00:00 2001 From: Robert McLaws <1657085+robertmclaws@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:39:09 -0500 Subject: [PATCH 1/2] Add 'type' field to supermemory MCP server config Added 'type' field to supermemory MCP server configuration. Supermemory uses SSE, and if that is not directly specified, the MCP server will error out. --- apps/docs/supermemory-mcp/mcp.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/docs/supermemory-mcp/mcp.mdx b/apps/docs/supermemory-mcp/mcp.mdx index f317d920c..b3ea0bfff 100644 --- a/apps/docs/supermemory-mcp/mcp.mdx +++ b/apps/docs/supermemory-mcp/mcp.mdx @@ -22,6 +22,7 @@ Add to your MCP client config: { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp" } } @@ -38,6 +39,7 @@ If you prefer API keys over OAuth, get one from [app.supermemory.ai](https://app { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp", "headers": { "Authorization": "Bearer sm_your_api_key_here" @@ -57,6 +59,7 @@ Scope all operations to a specific project with `x-sm-project`: { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp", "headers": { "x-sm-project": "your-project-id" From f8eec22ce0b4871160e2865222f4ceb2d817145a Mon Sep 17 00:00:00 2001 From: Robert McLaws <1657085+robertmclaws@users.noreply.github.com> Date: Thu, 19 Feb 2026 23:50:21 -0500 Subject: [PATCH 2/2] Fixing the AI code reviewer's comments. --- apps/docs/supermemory-mcp/setup.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/docs/supermemory-mcp/setup.mdx b/apps/docs/supermemory-mcp/setup.mdx index 921804674..9001b412c 100644 --- a/apps/docs/supermemory-mcp/setup.mdx +++ b/apps/docs/supermemory-mcp/setup.mdx @@ -20,6 +20,7 @@ Add this to your MCP client config (Claude Desktop, Cursor, Windsurf, etc.): { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp" } } @@ -36,6 +37,7 @@ If you prefer to use an API key instead of OAuth, get one from [app.supermemory. { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp", "headers": { "Authorization": "Bearer sm_your_api_key_here" @@ -55,6 +57,7 @@ To scope all operations to a specific project, add the `x-sm-project` header: { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp", "headers": { "x-sm-project": "your-project-id" @@ -76,6 +79,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) { "mcpServers": { "supermemory": { + "type": "sse", "url": "https://mcp.supermemory.ai/mcp" } }