Skip to content
VS Code

mcp percona pg for VS Code

io.github.dockndevai/mcp-percona-pg

Manage Percona PostgreSQL + PgBouncer on Kubernetes — safe-by-default access modes and guards.

client:VS Code transport:stdio runtime:npm

Install mcp percona pg in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kubeconfig-path",
      "description": "KUBECONFIG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "percona-mode",
      "description": "PERCONA_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "percona-namespace",
      "description": "PERCONA_NAMESPACE",
      "password": true
    }
  ],
  "servers": {
    "mcp-percona-pg": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dockndevai/mcp-percona-pg"
      ],
      "env": {
        "KUBECONFIG_PATH": "${input:kubeconfig-path}",
        "PERCONA_MODE": "${input:percona-mode}",
        "PERCONA_NAMESPACE": "${input:percona-namespace}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp percona pg in other clients