-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcpx.example.json
More file actions
43 lines (43 loc) · 1.01 KB
/
mcpx.example.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"port": 3100,
"authToken": "${MCPX_AUTH_TOKEN}",
"backends": {
"grafana": {
"transport": "stdio",
"command": "uvx",
"args": ["mcp-grafana"],
"env": {
"GRAFANA_URL": "${GRAFANA_URL}",
"GRAFANA_SERVICE_ACCOUNT_TOKEN": "${GRAFANA_TOKEN}"
}
},
"plane": {
"transport": "stdio",
"command": "uvx",
"args": ["plane-mcp-server", "stdio"],
"env": {
"PLANE_API_KEY": "${PLANE_API_KEY}",
"PLANE_WORKSPACE_SLUG": "${PLANE_WORKSPACE_SLUG}",
"PLANE_BASE_URL": "${PLANE_BASE_URL}"
}
},
"github": {
"transport": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"-e",
"GITHUB_TOOLSETS",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}",
"GITHUB_TOOLSETS": "context,repos,issues,pull_requests"
}
}
}
}