Skip to content
VS Code

indonesia civic stack for VS Code

io.github.suryast/indonesia-civic-stack

40 MCP tools for 11 Indonesian government portals — BPOM, BPJPH, AHU, OJK, BMKG+

client:VS Code transport:stdio runtime:pypi

Install indonesia civic stack in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proxy-url",
      "description": "PROXY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bps-api-key",
      "description": "BPS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "indonesia-civic-stack": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "indonesia-civic-stack"
      ],
      "env": {
        "PROXY_URL": "${input:proxy-url}",
        "BPS_API_KEY": "${input:bps-api-key}"
      }
    }
  }
}

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

indonesia civic stack in other clients