Skip to content
VS Code

ckan mcp server for VS Code

io.github.aborruso/ckan-mcp-server

MCP server for interacting with CKAN open data portals

client:VS Code transport:stdio runtime:npm

Install ckan mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ckan-allowed-domains",
      "description": "CKAN_ALLOWED_DOMAINS",
      "password": true
    }
  ],
  "servers": {
    "ckan-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@aborruso/ckan-mcp-server"
      ],
      "env": {
        "CKAN_ALLOWED_DOMAINS": "${input:ckan-allowed-domains}"
      }
    }
  }
}

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

ckan mcp server in other clients