From 817d3c04bea742a3bc197921f7e3164330a3a0bb Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:34:43 +0000 Subject: [PATCH 1/3] 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 --- servers/com.mem0-mcp.json | 64 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.mem0-mcp.json diff --git a/servers/com.mem0-mcp.json b/servers/com.mem0-mcp.json new file mode 100644 index 0000000..80d0a71 --- /dev/null +++ b/servers/com.mem0-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.mem0-mcp", + "name": "Mem0", + "alias": "mem0", + "description": "Add persistent long-term memory to AI agents. Store, search, update, and delete memories across sessions using the official Mem0 Memory API.", + "icon": "https://avatars.githubusercontent.com/u/137054526?v=4", + "schema_version": "2.1", + "categories": ["ai-ml"], + "tags": ["mem0", "memory", "long-term-memory", "ai-agents", "personalization", "context"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@mem0/mcp"], + "env": { + "MEM0_API_KEY": "${input:MEM0_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "MEM0_API_KEY", + "label": "Mem0 API Key", + "description": "API key for the Mem0 Memory API. Required to store and retrieve memories.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "m0-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://app.mem0.ai/dashboard/api-keys", + "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", + "button_label": "Get API Key" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get a Mem0 API key at https://app.mem0.ai/dashboard/api-keys" + }, + + "contributor": { + "name": "Mem0", + "github": "mem0ai", + "url": "https://mem0.ai" + }, + + "links": { + "repository": "https://github.com/mem0ai/mem0-mcp", + "homepage": "https://mem0.ai", + "documentation": "https://docs.mem0.ai/platform/mem0-mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 2443862963816ae3fd0192b73416290f66fea76e Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:48 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for MEM0_API_KEY) --- servers/com.mem0-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/com.mem0-mcp.json b/servers/com.mem0-mcp.json index 80d0a71..61d45bf 100644 --- a/servers/com.mem0-mcp.json +++ b/servers/com.mem0-mcp.json @@ -6,13 +6,24 @@ "description": "Add persistent long-term memory to AI agents. Store, search, update, and delete memories across sessions using the official Mem0 Memory API.", "icon": "https://avatars.githubusercontent.com/u/137054526?v=4", "schema_version": "2.1", - "categories": ["ai-ml"], - "tags": ["mem0", "memory", "long-term-memory", "ai-agents", "personalization", "context"], - + "categories": [ + "ai-ml" + ], + "tags": [ + "mem0", + "memory", + "long-term-memory", + "ai-agents", + "personalization", + "context" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@mem0/mcp"], + "args": [ + "-y", + "@mem0/mcp" + ], "env": { "MEM0_API_KEY": "${input:MEM0_API_KEY}" }, @@ -22,7 +33,7 @@ "id": "MEM0_API_KEY", "label": "Mem0 API Key", "description": "API key for the Mem0 Memory API. Required to store and retrieve memories.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "m0-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get a Mem0 API key at https://app.mem0.ai/dashboard/api-keys" }, - "contributor": { "name": "Mem0", "github": "mem0ai", "url": "https://mem0.ai" }, - "links": { "repository": "https://github.com/mem0ai/mem0-mcp", "homepage": "https://mem0.ai", "documentation": "https://docs.mem0.ai/platform/mem0-mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 9ebdec0924b1839b6a4d25f1b661a9840e3f702d Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:59 +0800 Subject: [PATCH 3/3] 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 --- servers/{com.mem0-mcp.json => com.mem0-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.mem0-mcp.json => com.mem0-mcp-npx.json} (97%) diff --git a/servers/com.mem0-mcp.json b/servers/com.mem0-mcp-npx.json similarity index 97% rename from servers/com.mem0-mcp.json rename to servers/com.mem0-mcp-npx.json index 61d45bf..a569557 100644 --- a/servers/com.mem0-mcp.json +++ b/servers/com.mem0-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.mem0-mcp", - "name": "Mem0", + "id": "com.mem0-mcp-npx", + "name": "Mem0 (npx)", "alias": "mem0", "description": "Add persistent long-term memory to AI agents. Store, search, update, and delete memories across sessions using the official Mem0 Memory API.", "icon": "https://avatars.githubusercontent.com/u/137054526?v=4",