-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathserver.json
More file actions
36 lines (36 loc) · 1.42 KB
/
Copy pathserver.json
File metadata and controls
36 lines (36 loc) · 1.42 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cyberlife-coder/velesdb-memory",
"title": "VelesDB Memory",
"description": "Agentic memory for AI agents in one tiny offline binary. remember/recall/relate/forget/why over a tri-engine that fuses vector search, a knowledge graph, and a columnar store — why() walks the graph to reconnect a decision with its context across sessions, surfacing linked facts that share no words with the query.",
"version": "0.7.0",
"repository": {
"url": "https://github.com/cyberlife-coder/VelesDB",
"source": "github"
},
"packages": [
{
"registryType": "cargo",
"registryBaseUrl": "https://crates.io",
"identifier": "velesdb-memory",
"version": "0.7.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "VELESDB_MEMORY_PATH",
"description": "Directory where the local memory store lives (the memory never leaves this machine).",
"isRequired": false,
"default": "~/.velesdb-memory"
},
{
"name": "VELESDB_MEMORY_EMBEDDER",
"description": "Embedding backend: 'hash' (default, offline, zero-dep) or 'ollama' (real semantic recall via a local model; binary must be built --features ollama).",
"isRequired": false,
"default": "hash"
}
]
}
]
}