-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
52 lines (52 loc) · 1.79 KB
/
Copy pathserver.json
File metadata and controls
52 lines (52 loc) · 1.79 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
45
46
47
48
49
50
51
52
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.infino-ai/code-context",
"description": "Local code search for AI coding agents: hybrid search and SQL aggregation over an in-repo index.",
"repository": {
"url": "https://github.com/infino-ai/code-context",
"source": "github"
},
"version": "0.1.2",
"packages": [
{
"registryType": "npm",
"identifier": "@infino-ai/code-context",
"version": "0.1.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CX_ROOT",
"description": "Repository root to serve. Optional - defaults to the working directory the server is launched in.",
"isRequired": false,
"format": "string"
},
{
"name": "CX_INDEX_DIR",
"description": "Where the index lives. Optional - defaults to .infino/ inside the repository root.",
"isRequired": false,
"format": "string"
},
{
"name": "CX_AUTO_SYNC",
"description": "Set to 0 to disable the background staleness sync that runs as queries arrive.",
"isRequired": false,
"format": "string"
},
{
"name": "CX_NO_EMBED",
"description": "Set (1/true/yes) for keyword-only mode - skip the vector stage entirely.",
"isRequired": false,
"format": "string"
},
{
"name": "CX_NO_RECEIPT",
"description": "Set (1/true/yes) to turn off local usage accounting: the per-call receipt on results and the cx usage ledger. Optional - on by default, computed locally, nothing leaves the machine.",
"isRequired": false,
"format": "string"
}
]
}
]
}