-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
59 lines (59 loc) · 1.51 KB
/
server.json
File metadata and controls
59 lines (59 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.sindecker/aibrain",
"title": "AIBrain Memory",
"description": "Persistent memory for AI agents. CLS dual-system architecture, zero config, backs to ~/aibrain.db.",
"version": "1.5.14",
"repository": {
"url": "https://github.com/sindecker/aibrain",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "aibrain",
"version": "1.5.14",
"runtimeHint": "python",
"packageArguments": [
{
"type": "positional",
"value": "-m",
"isRequired": true
},
{
"type": "positional",
"value": "aibrain.mcp",
"isRequired": true
}
],
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AIBRAIN_DB",
"description": "Path to the AIBrain SQLite database. Defaults to ~/aibrain.db if not set.",
"isRequired": false,
"isSecret": false
}
]
}
],
"_meta": {
"tags": ["memory", "agents", "productivity", "persistent-memory", "rag"],
"tools": [
"memory_store",
"memory_search",
"memory_recall",
"memory_stats",
"memory_prepare",
"memory_ingest",
"memory_forget",
"memory_cite",
"file_reference_search",
"file_reference_topic",
"task_route"
]
}
}