Skip to content

Commit 59e6645

Browse files
claudeits-mash
authored andcommitted
feat: add Mem0 MCP server definition
Add Mem0 local stdio server via npx @mem0/mcp. Persistent long-term memory for AI agents across sessions. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 59e6645

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.mem0-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.mem0-mcp",
4+
"name": "Mem0",
5+
"alias": "mem0",
6+
"description": "Add persistent long-term memory to AI agents. Store, search, update, and delete memories across sessions using the official Mem0 Memory API.",
7+
"icon": "https://avatars.githubusercontent.com/u/137054526?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml"],
10+
"tags": ["mem0", "memory", "long-term-memory", "ai-agents", "personalization", "context"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@mem0/mcp"],
16+
"env": {
17+
"MEM0_API_KEY": "${input:MEM0_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "MEM0_API_KEY",
23+
"label": "Mem0 API Key",
24+
"description": "API key for the Mem0 Memory API. Required to store and retrieve memories.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "m0-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://app.mem0.ai/dashboard/api-keys",
31+
"instructions": "1. Go to app.mem0.ai and create an account\n2. Navigate to the API Keys page\n3. Click 'Create New API Key'\n4. Copy the generated key",
32+
"button_label": "Get API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get a Mem0 API key at https://app.mem0.ai/dashboard/api-keys"
42+
},
43+
44+
"contributor": {
45+
"name": "Mem0",
46+
"github": "mem0ai",
47+
"url": "https://mem0.ai"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/mem0ai/mem0-mcp",
52+
"homepage": "https://mem0.ai",
53+
"documentation": "https://docs.mem0.ai/platform/mem0-mcp"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)