-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
26 lines (26 loc) · 1.02 KB
/
server.json
File metadata and controls
26 lines (26 loc) · 1.02 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.Thezenmonster/agentmem",
"description": "Governed memory for coding agents. Trust lifecycle, conflict detection, health scoring.",
"title": "agentmem",
"websiteUrl": "https://thezenmonster.github.io/agentmem/",
"repository": {
"url": "https://github.com/Thezenmonster/agentmem",
"source": "github"
},
"version": "0.2.5",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "quilmem",
"version": "0.2.5",
"transport": { "type": "stdio" },
"packageArguments": [
{ "type": "named", "name": "--db", "description": "Path to the SQLite database file", "default": "./memory.db", "isRequired": true },
{ "type": "named", "name": "--project", "description": "Project name / namespace for memories", "default": "myproject", "isRequired": true },
{ "type": "positional", "value": "serve" }
]
}
]
}