Skip to content

Commit 90f59ea

Browse files
authored
feat: add Mem0 MCP server definition (#53)
* 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 * fix: update server definition (input type 'password' -> 'text' for MEM0_API_KEY) * fix: rename server files with transport suffix - com.mem0-mcp.json -> com.mem0-mcp-npx.json (id: com.mem0-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent fdd7e92 commit 90f59ea

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

servers/com.mem0-mcp-npx.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.mem0-mcp-npx",
4+
"name": "Mem0 (npx)",
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": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"mem0",
14+
"memory",
15+
"long-term-memory",
16+
"ai-agents",
17+
"personalization",
18+
"context"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@mem0/mcp"
26+
],
27+
"env": {
28+
"MEM0_API_KEY": "${input:MEM0_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "MEM0_API_KEY",
34+
"label": "Mem0 API Key",
35+
"description": "API key for the Mem0 Memory API. Required to store and retrieve memories.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "m0-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://app.mem0.ai/dashboard/api-keys",
42+
"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",
43+
"button_label": "Get API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Get a Mem0 API key at https://app.mem0.ai/dashboard/api-keys"
52+
},
53+
"contributor": {
54+
"name": "Mem0",
55+
"github": "mem0ai",
56+
"url": "https://mem0.ai"
57+
},
58+
"links": {
59+
"repository": "https://github.com/mem0ai/mem0-mcp",
60+
"homepage": "https://mem0.ai",
61+
"documentation": "https://docs.mem0.ai/platform/mem0-mcp"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)