-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.56 KB
/
Copy pathserver.json
File metadata and controls
45 lines (45 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Sathvik-1007/graphmem-mcp",
"title": "Graph-Mem",
"description": "Persistent knowledge-graph memory for AI agents, with local semantic search. No API keys.",
"version": "1.0.0",
"repository": {
"url": "https://github.com/Sathvik-1007/GraphMem-MCP",
"source": "github"
},
"websiteUrl": "https://github.com/Sathvik-1007/GraphMem-MCP#readme",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "graphmem-mcp",
"version": "1.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "GRAPHMEM_DB_PATH",
"description": "Path to the SQLite database file. Defaults to .graphmem/graph.db relative to the working directory.",
"isRequired": false
},
{
"name": "GRAPHMEM_EMBEDDING_MODEL",
"description": "sentence-transformers model ID used for semantic search. Defaults to all-MiniLM-L6-v2, downloaded on first use.",
"isRequired": false
},
{
"name": "GRAPHMEM_TRAVERSAL_NODE_BUDGET",
"description": "Maximum entities visited by a single graph traversal. Defaults to 5000.",
"isRequired": false
},
{
"name": "GRAPHMEM_LOG_LEVEL",
"description": "Logging verbosity: DEBUG, INFO, WARNING, ERROR, or CRITICAL. Defaults to WARNING.",
"isRequired": false
}
]
}
]
}