File tree Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " @mcp/memory" ,
3+ "display_name" : " Memory Server" ,
4+ "description" : " A server for storing and retrieving memories." ,
5+ "repository" : {
6+ "type" : " git" ,
7+ "url" : " https://github.com/modelcontextprotocol/servers/tree/main/src/memory"
8+ },
9+ "author" : {
10+ "name" : " Model Context Protocol"
11+ },
12+ "license" : " MIT" ,
13+ "categories" : [
14+ " Databases" ,
15+ " Dev Tools"
16+ ],
17+ "tags" : [
18+ " memory" ,
19+ " key-value" ,
20+ " mcp"
21+ ],
22+ "arguments" : {
23+ "port" : {
24+ "description" : " The port to run the server on." ,
25+ "required" : false ,
26+ "example" : " 3000"
27+ },
28+ "host" : {
29+ "description" : " The host to run the server on." ,
30+ "required" : false ,
31+ "example" : " localhost"
32+ }
33+ },
34+ "installations" : {
35+ "uvx" : {
36+ "type" : " uvx" ,
37+ "command" : " uvx" ,
38+ "args" : [
39+ " run" ,
40+ " @mcp/memory"
41+ ],
42+ "package" : " @mcp/memory" ,
43+ "description" : " Run the memory server using uvx." ,
44+ "recommended" : true
45+ },
46+ "docker" : {
47+ "type" : " docker" ,
48+ "command" : " docker" ,
49+ "args" : [
50+ " run" ,
51+ " -i" ,
52+ " --rm" ,
53+ " mcp/memory"
54+ ],
55+ "description" : " Run the memory server using docker."
56+ }
57+ },
58+ "tools" : [],
59+ "resources" : [],
60+ "prompts" : [],
61+ "examples" : [],
62+ "is_official" : true ,
63+ "is_archived" : false
64+ }
You can’t perform that action at this time.
0 commit comments