-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
25 lines (25 loc) · 884 Bytes
/
server.json
File metadata and controls
25 lines (25 loc) · 884 Bytes
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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.gambletan/cortex",
"title": "Cortex Memory Engine",
"description": "Local-first AI memory engine with 4-tier memory model (working/episodic/semantic/procedural), people graph, and Bayesian belief tracking. 27 MCP tools. Rust binary, sub-millisecond operations, AES-256-GCM encrypted.",
"repository": {
"url": "https://github.com/gambletan/cortex",
"source": "github"
},
"version": "2.0.0",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/gambletan/cortex/cortex-http:2.0.0",
"runtimeHint": "docker",
"transport": {
"type": "stdio"
},
"environmentVariables": {
"CORTEX_DB_PATH": "/data/memory.db"
},
"entrypoint": ["cortex-mcp-server", "/data/memory.db"]
}
]
}