71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"mcpServers": {
|
|
"forgejo": {
|
|
"command": "forgejo-mcp",
|
|
"args": ["-t", "stdio", "--host", "https://localhost:3000"],
|
|
"env": {
|
|
"GITEA_ACCESS_TOKEN": "${FORGEJO_PAT:-your-forgejo-token-here}"
|
|
}
|
|
},
|
|
"tests": {
|
|
"command": "node",
|
|
"args": ["/usr/local/lib/node_modules/test-runner-mcp/build/index.js"]
|
|
},
|
|
"ruff": {
|
|
"command": "ruff-mcp-server"
|
|
},
|
|
"uv": {
|
|
"command": "uvx",
|
|
"args": ["uv-mcp"]
|
|
},
|
|
"devcontainers": {
|
|
"command": "npx",
|
|
"args": ["-y", "@crunchloop/mcp-devcontainers"]
|
|
},
|
|
"kubernetes": {
|
|
"command": "npx",
|
|
"args": ["kubernetes-mcp-server@latest"],
|
|
"env": {
|
|
"KUBECONFIG": "${KUBECONFIG:-~/.kube/config}"
|
|
}
|
|
},
|
|
"prometheus": {
|
|
"command": "docker",
|
|
"args": [
|
|
"run", "-i", "--rm",
|
|
"-e", "PROMETHEUS_URL",
|
|
"ghcr.io/pab1it0/prometheus-mcp-server:latest"
|
|
],
|
|
"env": {
|
|
"PROMETHEUS_URL": "${PROMETHEUS_URL:-http://localhost:9090}"
|
|
}
|
|
},
|
|
"grafana": {
|
|
"command": "docker",
|
|
"args": [
|
|
"run", "-i", "--rm",
|
|
"-e", "GRAFANA_API_TOKEN",
|
|
"ghcr.io/grafana/mcp-grafana:latest"
|
|
],
|
|
"env": {
|
|
"GRAFANA_API_TOKEN": "${GRAFANA_API_TOKEN:-your-grafana-token-here}"
|
|
}
|
|
},
|
|
"tofu": {
|
|
"transport": "sse",
|
|
"endpoint": "https://mcp.opentofu.org/sse"
|
|
}
|
|
},
|
|
"globalShortcuts": {
|
|
"claude": "ctrl+shift+c"
|
|
},
|
|
"editor": {
|
|
"wordWrap": true,
|
|
"fontSize": 14,
|
|
"fontFamily": "JetBrains Mono, 'Courier New', monospace"
|
|
},
|
|
"ui": {
|
|
"theme": "dark",
|
|
"sidebarWidth": 300
|
|
}
|
|
} |