File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments