Last active
July 5, 2025 12:02
-
-
Save usrbinkat/a57de05914686084ec89c6cfd864ca7d to your computer and use it in GitHub Desktop.
Revisions
-
usrbinkat revised this gist
Apr 15, 2025 . 1 changed file with 11 additions and 21 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,11 @@ { "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": { @@ -20,9 +15,8 @@ ] }, "pulumi": { "command": "npx", "args": ["@pulumi/mcp-server@latest"] }, "github": { "command": "npx", @@ -49,19 +43,15 @@ ], "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" } } } } -
usrbinkat created this gist
Apr 14, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,67 @@ { "mcpServers": { "aws-kb-retrieval": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-aws-kb-retrieval" ], "env": { "AWS_ACCESS_KEY_ID": "<YOUR_AWS_ACCESS_KEY_ID>", "AWS_SECRET_ACCESS_KEY": "<YOUR_AWS_SECRET_ACCESS_KEY>", "AWS_SESSION_TOKEN": "<YOUR_AWS_SESSION_TOKEN>", "AWS_REGION": "us-east-1" } }, "playwright": { "command": "npx", "args": [ "@playwright/mcp@latest" ] }, "pulumi": { "type": "stdio", "command": "npx", "args": ["@pulumi/mcp-server"] }, "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://git.smce.nasa.gov/api/v4" } }, "kubernetes": { "command": "docker", "args": [ "run", "-i", "--rm", "-v", "/home/ubuntu/.kube:/home/appuser/.kube:ro", "ghcr.io/alexei-led/k8s-mcp-server:latest" ] } } }