Skip to content

Commit 86d858f

Browse files
committed
Add Memory MCP server definition
Reference Memory MCP server from modelcontextprotocol/servers. Persistent knowledge graph for storing entities, relations, and observations across sessions. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 86d858f

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

servers/community.memory.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.memory",
4+
"name": "Memory",
5+
"alias": "memory",
6+
"description": "Persistent memory using a local knowledge graph. Store entities, relations, and observations that persist across conversations.",
7+
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml"],
10+
"tags": ["memory", "knowledge-graph", "entities", "persistence", "context"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@modelcontextprotocol/server-memory"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none",
23+
"instructions": "No authentication required. Memory is stored locally in a JSON file."
24+
},
25+
26+
"contributor": {
27+
"name": "Model Context Protocol",
28+
"github": "modelcontextprotocol",
29+
"url": "https://modelcontextprotocol.io"
30+
},
31+
32+
"links": {
33+
"repository": "https://github.com/modelcontextprotocol/servers",
34+
"homepage": "https://modelcontextprotocol.io",
35+
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory#readme"
36+
},
37+
38+
"platforms": ["all"],
39+
40+
"capabilities": {
41+
"tools": true,
42+
"resources": false,
43+
"prompts": false,
44+
"read_only_mode": false
45+
}
46+
}

0 commit comments

Comments
 (0)