-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.json
More file actions
44 lines (44 loc) · 1.18 KB
/
config.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"mcpServers": {
"github": {
"type": "local",
"container": "ghcr.io/github/github-mcp-server:latest",
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": ""
}
},
"fetch": {
"type": "local",
"container": "mcp/fetch"
},
"memory": {
"type": "local",
"container": "mcp/memory"
},
"serena": {
"type": "stdio",
"container": "ghcr.io/github/serena-mcp-server:latest",
"mounts": [
"${PWD}:/workspace:ro"
],
"env": {
"NO_COLOR": "1",
"TERM": "dumb"
}
},
"custom-app": {
"type": "stdio",
"container": "myorg/custom-mcp:latest",
"entrypoint": "/custom/entrypoint.sh",
"entrypointArgs": ["--verbose", "--debug"],
"mounts": [
"/host/config:/app/config:ro",
"/host/data:/app/data:rw"
],
"env": {
"API_KEY": "${CUSTOM_API_KEY}",
"DEBUG": "true"
}
}
}
}