Skip to content

Commit fdd7e92

Browse files
authored
feat: add Memory MCP server definition (#54)
* 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 * fix: rename server files with transport suffix - community.memory.json -> community.memory-npx.json (id: community.memory-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 89a4479 commit fdd7e92

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

servers/community.memory-npx.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.memory-npx",
4+
"name": "Memory (npx)",
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": [
10+
"ai-ml"
11+
],
12+
"tags": [
13+
"memory",
14+
"knowledge-graph",
15+
"entities",
16+
"persistence",
17+
"context"
18+
],
19+
"transport": {
20+
"type": "stdio",
21+
"command": "npx",
22+
"args": [
23+
"-y",
24+
"@modelcontextprotocol/server-memory"
25+
],
26+
"metadata": {
27+
"inputs": []
28+
}
29+
},
30+
"auth": {
31+
"type": "none",
32+
"instructions": "No authentication required. Memory is stored locally in a JSON file."
33+
},
34+
"contributor": {
35+
"name": "Model Context Protocol",
36+
"github": "modelcontextprotocol",
37+
"url": "https://modelcontextprotocol.io"
38+
},
39+
"links": {
40+
"repository": "https://github.com/modelcontextprotocol/servers",
41+
"homepage": "https://modelcontextprotocol.io",
42+
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory#readme"
43+
},
44+
"platforms": [
45+
"all"
46+
],
47+
"capabilities": {
48+
"tools": true,
49+
"resources": false,
50+
"prompts": false,
51+
"read_only_mode": false
52+
}
53+
}

0 commit comments

Comments
 (0)