-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig.toml
More file actions
30 lines (25 loc) · 940 Bytes
/
config.toml
File metadata and controls
30 lines (25 loc) · 940 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
[servers]
[servers.github]
command = "docker"
args = ["run", "--rm", "-i",
"--name", "awmg-github-mcp",
"-e", "GITHUB_PERSONAL_ACCESS_TOKEN",
"-e", "NO_COLOR=1", "-e", "TERM=dumb",
"ghcr.io/github/github-mcp-server:latest"]
[servers.fetch]
command = "docker"
args = ["run", "--rm", "-i",
"-e", "NO_COLOR=1", "-e", "TERM=dumb",
"-e", "PYTHONUNBUFFERED=1",
"mcp/fetch"]
[servers.memory]
command = "docker"
args = ["run", "--rm", "-i", "-e", "NO_COLOR=1", "-e", "TERM=dumb", "-e", "PYTHONUNBUFFERED=1", "mcp/memory"]
[servers.serena]
command = "docker"
args = ["run", "--rm", "-i",
"-v", "${PWD}:/workspace:ro",
"-e", "NO_COLOR=1", "-e", "TERM=dumb",
"ghcr.io/github/serena-mcp-server:latest"]
# Note: DOCKER_API_VERSION is automatically set by querying the Docker daemon's
# current API version; falls back to 1.44 for all architectures if detection fails.