-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.toml
More file actions
31 lines (26 loc) · 919 Bytes
/
config.toml
File metadata and controls
31 lines (26 loc) · 919 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
[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 based on architecture
# - ARM64 (M1/M2/M3 Macs): 1.43
# - x86_64 (Intel, GitHub Actions): 1.44