Skip to content

Commit a65a8d0

Browse files
feat: add manifest for modelcontextprotocol-servers-tree-main-src-memory
Generated manifest JSON for repository: https://github.com/modelcontextprotocol/servers/tree/main/src/memory Co-Authored-By: Lucien
1 parent e19dfff commit a65a8d0

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "memory",
3+
"display_name": "Memory Server",
4+
"description": "[INFO NOT FOUND]",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory"
8+
},
9+
"license": "[INFO NOT FOUND]",
10+
"installations": {
11+
"npx": {
12+
"type": "npm",
13+
"command": "npx",
14+
"package": "@mcp/memory-server",
15+
"args": [
16+
"-y",
17+
"@mcp/memory-server"
18+
],
19+
"env": {
20+
"MCP_MEMORY_FILE": "/path/to/your/memory.json"
21+
},
22+
"description": "Run the server using npx, optionally specifying a memory file.",
23+
"recommended": true
24+
},
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+
},
38+
"docker": {
39+
"type": "docker",
40+
"command": "docker",
41+
"args": [
42+
"run",
43+
"-p",
44+
"8000:8000",
45+
"-v",
46+
"$(pwd)/memory.json:/app/memory.json",
47+
"-e",
48+
"MCP_MEMORY_FILE=/app/memory.json",
49+
"ghcr.io/modelcontextprotocol/mcp-memory-server"
50+
],
51+
"description": "Run the server using Docker, mounting a local memory file."
52+
}
53+
}
54+
}

0 commit comments

Comments
 (0)