Skip to content

Commit c1fbd85

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for MEM0_API_KEY)
1 parent 59e6645 commit c1fbd85

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/com.mem0-mcp.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Add persistent long-term memory to AI agents. Store, search, update, and delete memories across sessions using the official Mem0 Memory API.",
77
"icon": "https://avatars.githubusercontent.com/u/137054526?v=4",
88
"schema_version": "2.1",
9-
"categories": ["ai-ml"],
10-
"tags": ["mem0", "memory", "long-term-memory", "ai-agents", "personalization", "context"],
11-
9+
"categories": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"mem0",
14+
"memory",
15+
"long-term-memory",
16+
"ai-agents",
17+
"personalization",
18+
"context"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "@mem0/mcp"],
23+
"args": [
24+
"-y",
25+
"@mem0/mcp"
26+
],
1627
"env": {
1728
"MEM0_API_KEY": "${input:MEM0_API_KEY}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "MEM0_API_KEY",
2334
"label": "Mem0 API Key",
2435
"description": "API key for the Mem0 Memory API. Required to store and retrieve memories.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "m0-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Get a Mem0 API key at https://app.mem0.ai/dashboard/api-keys"
4252
},
43-
4453
"contributor": {
4554
"name": "Mem0",
4655
"github": "mem0ai",
4756
"url": "https://mem0.ai"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/mem0ai/mem0-mcp",
5260
"homepage": "https://mem0.ai",
5361
"documentation": "https://docs.mem0.ai/platform/mem0-mcp"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)