From 8b20dfa658410edfc5b289736707c746f230c2c4 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Thu, 8 Jan 2026 18:48:44 -0800 Subject: [PATCH] Update apps/docs/supermemory-mcp/setup.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- apps/docs/supermemory-mcp/setup.mdx | 60 ++++++++++++++++++++++++++++- 1 file changed, 59 insertions(+), 1 deletion(-) diff --git a/apps/docs/supermemory-mcp/setup.mdx b/apps/docs/supermemory-mcp/setup.mdx index 647c07f5..43e8d284 100644 --- a/apps/docs/supermemory-mcp/setup.mdx +++ b/apps/docs/supermemory-mcp/setup.mdx @@ -99,4 +99,62 @@ Or use the one-click install button at [app.supermemory.ai](https://app.supermem ### Windsurf / VS Code -Configuration varies by extension. Generally, add the server URL (`https://mcp.supermemory.ai/mcp`) to your MCP settings. \ No newline at end of file +Configuration varies by extension. Generally, add the server URL (`https://mcp.supermemory.ai/mcp`) to your MCP settings. + +## Using the MCP Server + +Once configured, the MCP server provides three main tools: + +### `memory` Tool + +Save or forget information about the user: + +```json +{ + "content": "User prefers dark mode and uses TypeScript", + "action": "save", + "containerTag": "optional-project-tag" +} +``` + +The AI assistant will automatically use this tool when: +- You explicitly ask it to remember something +- It detects important preferences or patterns in conversation + +### `recall` Tool + +Search memories and get user profile: + +```json +{ + "query": "What are the user's programming preferences?", + "includeProfile": true, + "containerTag": "optional-project-tag" +} +``` + +The AI assistant will automatically use this tool when: +- You ask about past conversations or preferences +- It needs context from previous interactions +- It wants to provide personalized responses + +### `whoAmI` Tool + +Get information about the current logged-in user: + +```json +{} +``` + +Returns your userId, email, name, client information, and sessionId. + +## Resources + +The MCP server also provides resources that can be accessed directly: + +- **`supermemory://profile`** - Your user profile with stable preferences and recent activity +- **`supermemory://projects`** - List of your available memory projects + +## Prompts + +The server provides a `context` prompt that injects your user profile and preferences into the system context, allowing the AI to be aware of your preferences from the start of each conversation.