-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.41 KB
/
server.json
File metadata and controls
44 lines (44 loc) · 1.41 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.etanhey/brainlayer",
"title": "BrainLayer",
"description": "Persistent memory for AI agents — local-first semantic search, knowledge graph, and 12 MCP tools with ToolAnnotations. One SQLite file, no cloud, no API keys.",
"version": "1.0.0",
"websiteUrl": "https://brainlayer.etanheyman.com",
"repository": {
"url": "https://github.com/EtanHey/brainlayer",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "brainlayer",
"version": "1.0.0",
"runtimeHint": "pipx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "BRAINLAYER_DB",
"description": "Path to SQLite database file (default: ~/.local/share/brainlayer/brainlayer.db)",
"isRequired": false,
"isSecret": false
},
{
"name": "BRAINLAYER_ENRICH_BACKEND",
"description": "LLM enrichment backend: groq, ollama, or mlx (auto-detected if omitted)",
"isRequired": false,
"isSecret": false
},
{
"name": "GROQ_API_KEY",
"description": "Groq API key for cloud enrichment backend",
"isRequired": false,
"isSecret": true
}
]
}
]
}