🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

apiverket-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apiverket-mcp-server

MCP server for querying Swedish government data via Apiverket API

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Apiverket MCP Server

An MCP (Model Context Protocol) server that gives AI assistants access to 120+ Swedish public data endpoints via the Apiverket API. Works with Claude Code, Claude Desktop, Cursor, VS Code, and any MCP-compatible client.

What it does

Two tools, one goal: let AI assistants query Swedish public data using natural language.

ToolPurpose
govdata_discoverSearch and browse 120+ endpoints across 16 categories
govdata_queryCall any endpoint and get structured JSON data

Ask "What's the weather in Stockholm?" or "Show train delays from Gothenburg" — the AI finds the right endpoint, fills in parameters, and returns the data.

Categories

Business & Companies, Culture & Media, Demographics, Economy & Finance, Education, Environment & Nature, Geography, Government & Safety, Health & Medicine, Jobs & Labor, Social Insurance, Telecom, Tourism, Transport & Infrastructure, Weather & Climate

Quick start

Claude Code / Claude Desktop

Add to your MCP config (~/.claude/claude_code_config.json or Claude Desktop settings):

{
  "mcpServers": {
    "apiverket": {
      "command": "node",
      "args": ["/path/to/apiverket-mcp/dist/index.js"],
      "env": {
        "GOVDATA_API_URL": "https://apiverket.se",
        "GOVDATA_API_KEY": "sk_test_demo"
      }
    }
  }
}

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "apiverket": {
      "command": "node",
      "args": ["/path/to/apiverket-mcp/dist/index.js"],
      "env": {
        "GOVDATA_API_URL": "https://apiverket.se",
        "GOVDATA_API_KEY": "sk_test_demo"
      }
    }
  }
}

npx (no install)

{
  "mcpServers": {
    "apiverket": {
      "command": "npx",
      "args": ["-y", "apiverket-mcp-server"],
      "env": {
        "GOVDATA_API_URL": "https://apiverket.se",
        "GOVDATA_API_KEY": "sk_test_demo"
      }
    }
  }
}

Build from source

git clone https://github.com/vinvuk/apiverket-mcp.git
cd apiverket-mcp
npm install
npm run build

Configuration

VariableDefaultDescription
GOVDATA_API_URLhttp://localhost:3010Apiverket API base URL
GOVDATA_API_KEYsk_test_demoAPI key (sk_test_* for sandbox, sk_live_* for production)

The test key (sk_test_demo) returns sandbox data for all endpoints — no signup required.

Tools

govdata_discover

Search and browse available endpoints.

# List all categories
govdata_discover()

# Search by keyword
govdata_discover(query: "electricity prices")

# Browse a category
govdata_discover(category: "Weather & Climate")

# Search within a category
govdata_discover(query: "forecast", category: "Weather")

govdata_query

Call any endpoint with parameters.

# Current weather
govdata_query(endpoint: "/v1/weather/{city}", path_params: {city: "stockholm"})

# Job search
govdata_query(endpoint: "/v1/jobs/search", query_params: {q: "developer", limit: 5})

# Exchange rates
govdata_query(endpoint: "/v1/rates")

# Train departures
govdata_query(endpoint: "/v1/transport/trains/{station}", path_params: {station: "Cst"})

# Electricity prices by area
govdata_query(endpoint: "/v1/energy/electricity/{area}", path_params: {area: "SE3"})

# Company lookup
govdata_query(endpoint: "/v1/companies/{orgNumber}", path_params: {orgNumber: "5568710426"})

# Police events
govdata_query(endpoint: "/v1/police/events", query_params: {limit: 10})

# VAT validation
govdata_query(endpoint: "/v1/vat/{vatNumber}", path_params: {vatNumber: "SE556871042601"})

How it works

  • The MCP server runs as a local process using stdio transport
  • Your AI client sends tool calls via the MCP protocol
  • govdata_discover searches the built-in endpoint catalog (no API call needed)
  • govdata_query makes authenticated HTTP requests to the Apiverket API
  • Responses over 25,000 characters are truncated with pagination guidance

Requirements

  • Node.js >= 18
  • An Apiverket API key (or use sk_test_demo for sandbox)

License

MIT

Keywords

mcp

FAQs

Package last updated on 22 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts