Last active
April 15, 2025 00:56
-
-
Save usrbinkat/a57de05914686084ec89c6cfd864ca7d to your computer and use it in GitHub Desktop.
mcp.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mcpServers": { | |
"puppeteer": { | |
"command": "npx", | |
"args": ["-y", "@modelcontextprotocol/server-puppeteer"], | |
"env": { | |
"PUPPETEER_LAUNCH_OPTIONS": "{\"headless\": \"new\", \"args\": [\"--no-sandbox\", \"--disable-setuid-sandbox\", \"--disable-dev-shm-usage\", \"--window-size=1280,720\"]}", | |
"ALLOW_DANGEROUS": "true" | |
} | |
}, | |
"playwright": { | |
"command": "npx", | |
"args": [ | |
"@playwright/mcp@latest" | |
] | |
}, | |
"pulumi": { | |
"command": "npx", | |
"args": ["@pulumi/mcp-server@latest"] | |
}, | |
"github": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-github" | |
], | |
"env": { | |
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_GITHUB_TOKEN>" | |
} | |
}, | |
"sequential-thinking": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-sequential-thinking" | |
] | |
}, | |
"gitlab": { | |
"command": "npx", | |
"args": [ | |
"-y", | |
"@modelcontextprotocol/server-gitlab" | |
], | |
"env": { | |
"GITLAB_PERSONAL_ACCESS_TOKEN": "<YOUR_GITLAB_TOKEN>", | |
"GITLAB_API_URL": "https://gitlab.com/api/v4" | |
} | |
}, | |
"kubernetes": { | |
"command": "python", | |
"args": ["-m", "kubectl_mcp_tool.minimal_wrapper"], | |
"env": { | |
"KUBECONFIG": "/home/ubuntu/.kube/config" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment