-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
57 lines (57 loc) · 1.19 KB
/
config.example.json
File metadata and controls
57 lines (57 loc) · 1.19 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
55
56
57
{
"backends": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
},
"description": "GitHub MCP Server (Public Source)",
"timeout": 30
},
"time": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/time"
],
"description": "Time MCP Server (Internal Service)",
"timeout": 30
},
"local-mysql": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"bytebase/dbhub",
"--transport",
"stdio",
"--dsn",
"mysql://root:password@host.docker.internal:3306/myapp?sslmode=disable"
],
"description": "Local MySQL Database (Sensitive)",
"timeout": 30
},
"web-scraper": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/web-scraper"
],
"description": "Web Scraper (Public Source)",
"timeout": 30
}
}
}