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.
This commit is contained in:
Robert McLaws 2026-02-19 23:39:09 -05:00 committed by GitHub
parent c82dcdc30a
commit 8cf5ccb4a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"