Skip to content

Instantly share code, notes, and snippets.

@usrbinkat
Last active July 5, 2025 12:02
Show Gist options
  • Select an option

  • Save usrbinkat/a57de05914686084ec89c6cfd864ca7d to your computer and use it in GitHub Desktop.

Select an option

Save usrbinkat/a57de05914686084ec89c6cfd864ca7d to your computer and use it in GitHub Desktop.

Revisions

  1. usrbinkat revised this gist Apr 15, 2025. 1 changed file with 11 additions and 21 deletions.
    32 changes: 11 additions & 21 deletions .mcp.json
    Original file line number Diff line number Diff line change
    @@ -1,16 +1,11 @@
    {
    "mcpServers": {
    "aws-kb-retrieval": {
    "puppeteer": {
    "command": "npx",
    "args": [
    "-y",
    "@modelcontextprotocol/server-aws-kb-retrieval"
    ],
    "args": ["-y", "@modelcontextprotocol/server-puppeteer"],
    "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"
    "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": {
    "type": "stdio",
    "command": "npx",
    "args": ["@pulumi/mcp-server"]
    "args": ["@pulumi/mcp-server@latest"]
    },
    "github": {
    "command": "npx",
    @@ -49,19 +43,15 @@
    ],
    "env": {
    "GITLAB_PERSONAL_ACCESS_TOKEN": "<YOUR_GITLAB_TOKEN>",
    "GITLAB_API_URL": "https://git.smce.nasa.gov/api/v4"
    "GITLAB_API_URL": "https://gitlab.com/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"
    ]
    "command": "python",
    "args": ["-m", "kubectl_mcp_tool.minimal_wrapper"],
    "env": {
    "KUBECONFIG": "/home/ubuntu/.kube/config"
    }
    }
    }
    }
  2. usrbinkat created this gist Apr 14, 2025.
    67 changes: 67 additions & 0 deletions .mcp.json
    Original 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"
    ]
    }
    }
    }