Skip to content

Commit ced4e9a

Browse files
committed
fix: update manifest.json
1 parent a65a8d0 commit ced4e9a

File tree

1 file changed

+12
-30
lines changed

1 file changed

+12
-30
lines changed
Lines changed: 12 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,36 @@
11
{
2-
"name": "memory",
3-
"display_name": "Memory Server",
4-
"description": "[INFO NOT FOUND]",
2+
"name": "server-memory",
3+
"display_name": "Knowledge Graph Memory Server",
4+
"description": "A basic implementation of persistent memory using a local knowledge graph. This lets Claude remember information about the user across chats.,
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory"
88
},
9-
"license": "[INFO NOT FOUND]",
9+
"license": "MIT",
1010
"installations": {
1111
"npx": {
1212
"type": "npm",
1313
"command": "npx",
14-
"package": "@mcp/memory-server",
1514
"args": [
1615
"-y",
17-
"@mcp/memory-server"
16+
"@modelcontextprotocol/server-memory"
1817
],
19-
"env": {
20-
"MCP_MEMORY_FILE": "/path/to/your/memory.json"
21-
},
2218
"description": "Run the server using npx, optionally specifying a memory file.",
2319
"recommended": true
2420
},
25-
"uvx": {
26-
"type": "uvx",
27-
"command": "uvx",
28-
"package": "@mcp/memory-server",
29-
"args": [
30-
"-y",
31-
"@mcp/memory-server"
32-
],
33-
"env": {
34-
"MCP_MEMORY_FILE": "/path/to/your/memory.json"
35-
},
36-
"description": "Run the server using uvx, optionally specifying a memory file."
37-
},
3821
"docker": {
3922
"type": "docker",
4023
"command": "docker",
4124
"args": [
4225
"run",
43-
"-p",
44-
"8000:8000",
26+
"-i",
4527
"-v",
46-
"$(pwd)/memory.json:/app/memory.json",
47-
"-e",
48-
"MCP_MEMORY_FILE=/app/memory.json",
49-
"ghcr.io/modelcontextprotocol/mcp-memory-server"
28+
"claude-memory:/app/dist",
29+
"--rm",
30+
"mcp/memory"
5031
],
5132
"description": "Run the server using Docker, mounting a local memory file."
5233
}
53-
}
54-
}
34+
},
35+
is_official: true
36+
}

0 commit comments

Comments
 (0)