-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json.example
More file actions
50 lines (50 loc) · 1.05 KB
/
mcp.json.example
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"mcpServers": {
"kubernetes": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"quay.io/podman/kubernetes-mcp-server",
"--port=8080"
],
"env": {
"KUBECONFIG": "/home/user/.kube/config"
},
"url": "http://localhost:8080/sse"
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "your_token_here"
},
"url": "http://localhost:8081"
},
"argo-workflows": {
"command": "npx",
"args": [
"-y",
"mcp-server-argo-workflows"
],
"env": {
"ARGO_SERVER": "https://argo.home.lab",
"ARGO_TOKEN": "your_argo_token_here"
},
"url": "http://localhost:8082"
},
"aws-billing": {
"url": "http://aws-billing:8083"
},
"aws-network": {
"url": "http://aws-network:8084"
},
"aws-cloudtrail": {
"url": "http://aws-cloudtrail:8085"
}
}
}