loading…
Search for a command to run...
loading…
An MCP server that enables users to visualize Supermemory document data as an interactive memory graph within MCP-compatible clients like Claude. It provides a
An MCP server that enables users to visualize Supermemory document data as an interactive memory graph within MCP-compatible clients like Claude. It provides a dedicated tool to fetch and render data as an interactive widget while keeping API keys secure on the server side.
Built with Codex. Review, test, and harden before using in production.
MCP server for rendering your Supermemory data as an interactive memory graph inside MCP-compatible clients (Claude, Inspector, and other MCP Apps hosts).

show-memory-graph@supermemory/memory-graphmcp-use server/index.ts/resources/memory-graph/widget.tsx/resources/memory-graph/types.ts/resources/styles.cssRequired:
SUPERMEMORY_API_KEY=sm_...
Optional:
# Base URL for MCP server metadata (important in deployed environments)
MCP_URL=https://your-mcp-server.example.com
# Override Supermemory API host if needed
SUPERMEMORY_API_BASE_URL=https://api.supermemory.ai
npm install
npm run dev
Open Inspector:
http://localhost:3000/inspectorshow-memory-graphpage?: number default 1limit?: number default 250 (max 500)sort?: "createdAt" | "updatedAt" default "createdAt"order?: "asc" | "desc" default "desc"variant?: "console" | "consumer" default "consumer"showSpacesSelector?: boolean default depends on variantPOST /v3/documents/documents on Supermemorydocuments, variant, etc.)mcp-use deploys source from GitHub, but environment variables are attached to the deployment (not committed to the repo).
npm run deploy
Before deploy:
SUPERMEMORY_API_KEY in the deployment environmentMCP_URL to the final public URLSet env vars at deploy time:
npm run deploy -- \
--env SUPERMEMORY_API_KEY=sm_your_key_here \
--env SUPERMEMORY_API_BASE_URL=https://api.supermemory.ai
Or use an env file:
# .env.production (do not commit this file)
SUPERMEMORY_API_KEY=sm_your_key_here
SUPERMEMORY_API_BASE_URL=https://api.supermemory.ai
npm run deploy -- --env-file .env.production
If your deployment already exists, re-running deploy updates code from GitHub and keeps/updates deployment env vars based on your flags/dashboard settings.
show-memory-graphImportant:
SUPERMEMORY_API_KEY into Claude connector fields401 Unauthorized from SupermemoryBearer documentsmcp-use: command not foundnpm install firstlatest where requiredДобавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"supermemory-mcp": {
"command": "npx",
"args": []
}
}
}