-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
43 lines (43 loc) · 1.57 KB
/
Copy pathserver.json
File metadata and controls
43 lines (43 loc) · 1.57 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.thru-echoes/trace-mcp",
"description": "TRACE: an MCP server providing a standardized decision-provenance audit trail for AI-assisted research and coding workflows — who proposed what, who accepted or revised it, and why.",
"version": "0.5.2.dev0",
"websiteUrl": "https://github.com/Thru-Echoes/TRACE",
"repository": {
"url": "https://github.com/Thru-Echoes/TRACE",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "trace-mcp",
"version": "0.5.2.dev0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "TRACE_DEFAULT_PROJECT",
"description": "Project name to attribute sessions to when one cannot be inferred. Optional.",
"isRequired": false,
"isSecret": false
},
{
"name": "TRACE_KNOWLEDGE_DIR",
"description": "Override directory for the optional trace-learn cross-session knowledge store (default ~/.trace/knowledge/). Optional.",
"isRequired": false,
"isSecret": false
},
{
"name": "OPENAI_API_KEY",
"description": "Enables the optional LLM backend in the trace-learn extension. Core makes no network calls; if unset, trace-learn falls back to local lexical matching.",
"isRequired": false,
"isSecret": true
}
]
}
]
}