Skip to content
VS Code

Apiverket for VS Code

io.github.vinvuk/apiverket-mcp

Query Swedish public data: companies, SCB statistics, weather, transport, and more.

client:VS Code transport:stdio runtime:npm

Install Apiverket in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "govdata-api-url",
      "description": "GOVDATA_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "govdata-api-key",
      "description": "GOVDATA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "apiverket-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "apiverket-mcp-server"
      ],
      "env": {
        "GOVDATA_API_URL": "${input:govdata-api-url}",
        "GOVDATA_API_KEY": "${input:govdata-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

Apiverket in other clients