-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 962 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"manifest_version": "0.3",
"name": "@ref-tools/ref-tools-mcp",
"version": "3.0.3",
"description": "Token-efficient documentation search for AI coding agents",
"author": {
"name": "Ref Tools"
},
"user_config": {
"transport": {
"type": "string",
"title": "Transport Mode",
"description": "Server transport: stdio (default, for local use) or http (for cloud deployment)",
"required": false,
"default": "stdio"
},
"port": {
"type": "string",
"title": "HTTP Port",
"description": "Port for HTTP transport (only used when transport is http)",
"required": false,
"default": "8000"
}
},
"server": {
"type": "node",
"entry_point": "dist/index.cjs",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.cjs"],
"env": {
"TRANSPORT": "${user_config.transport}",
"PORT": "${user_config.port}"
}
}
}
}