mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-11 22:51:05 +00:00
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:
parent
c82dcdc30a
commit
8cf5ccb4a3
1 changed files with 3 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue