forked from Wuesteon/lean-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
49 lines (49 loc) · 1.67 KB
/
Copy pathserver.json
File metadata and controls
49 lines (49 loc) · 1.67 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
46
47
48
49
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Wuesteon/lean-memory",
"description": "Embedded, local-first agent memory: one SQLite file per namespace, no server, no cloud.",
"title": "lean-memory",
"repository": {
"url": "https://github.com/Wuesteon/lean-memory",
"source": "github"
},
"version": "0.2.1",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "lean-memory",
"version": "0.2.1",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "named",
"name": "--from",
"value": "lean-memory[mcp,models,extract]",
"isRequired": true,
"description": "Install lean-memory with the extras the server needs: [mcp] (imported at startup — a bare install crashes), plus [models] and [extract] (the canonical real-quality backends; ~2 GB of open models download on first tool call). The package name and script name differ, so uvx needs --from."
}
],
"packageArguments": [
{
"type": "positional",
"value": "lean-memory-mcp",
"isRequired": true,
"description": "Console script entry point that starts the stdio MCP server."
}
],
"environmentVariables": [
{
"name": "LM_DATA_ROOT",
"description": "Directory for per-namespace SQLite memory files. Defaults to ~/.lean_memory when unset.",
"isRequired": false,
"isSecret": false,
"default": "~/.lean_memory"
}
]
}
]
}