-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 2 KB
/
Copy pathserver.json
File metadata and controls
54 lines (54 loc) · 2 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
53
54
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.munhq/codeindex",
"title": "codeindex",
"description": "Structural code intelligence over MCP: symbols, callers, imports and blast radius, 40+ languages.",
"repository": {
"url": "https://github.com/munhq/codeindex",
"source": "github"
},
"version": "0.4.0",
"icons": [
{
"src": "https://raw.githubusercontent.com/munhq/codeindex/main/docs/brand/icon-512.png",
"mimeType": "image/png",
"sizes": [
"512x512"
]
}
],
"packages": [
{
"registryType": "npm",
"identifier": "@munhq/codeindex",
"version": "0.4.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CODEINDEX_WORKSPACE",
"description": "Directory to index. Defaults to the enclosing project root of wherever the client starts the server, which is the right answer for every editor and agent that launches it inside a repository. Set it only when the server runs somewhere other than the code.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "CODEINDEX_NO_DAEMON",
"description": "Set to 1 to keep the index inside this server process. By default every session on one repository shares a single background daemon that parses and watches the tree once, and each session is a thin relay onto it. Turn that off for a sandbox with no writable runtime directory.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "CODEINDEX_DAEMON_IDLE_SECS",
"description": "Seconds with no session attached before the shared daemon exits and returns its memory. Default 900. Set 0 to keep it resident.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
],
"runtimeHint": "npx"
}
]
}