loading…
Search for a command to run...
loading…
Query Swedish public data from AI tools. Includes company data, SCB statistics, weather, transport, public agencies, and more through the Apiverket API.
Query Swedish public data from AI tools. Includes company data, SCB statistics, weather, transport, public agencies, and more through the Apiverket API.
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.
Two tools, one goal: let AI assistants query Swedish public data using natural language.
| Tool | Purpose |
|---|---|
govdata_discover |
Search and browse 120+ endpoints across 16 categories |
govdata_query |
Call 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. Use govdata_discover first instead of guessing /v1 paths.
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
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"
}
}
}
}
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"
}
}
}
}
{
"mcpServers": {
"apiverket": {
"command": "npx",
"args": ["-y", "apiverket-mcp-server"],
"env": {
"GOVDATA_API_URL": "https://apiverket.se",
"GOVDATA_API_KEY": "sk_test_demo"
}
}
}
}
git clone https://github.com/vinvuk/apiverket-mcp.git
cd apiverket-mcp
npm install
npm run build
| Variable | Default | Description |
|---|---|---|
GOVDATA_API_URL |
http://localhost:3010 |
Apiverket API base URL |
GOVDATA_API_KEY |
sk_test_demo |
API key (sk_test_* for sandbox, sk_live_* for production) |
The test key (sk_test_demo) returns sandbox data for all endpoints — no signup required.
govdata_discoverSearch and browse available endpoints. This is the first tool agents should call when they do not already know the exact Apiverket path.
# 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_queryCall 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"})
govdata_discover searches the built-in endpoint catalog (no API call needed)govdata_query makes authenticated HTTP requests to the Apiverket APIsk_test_demo for sandbox)MIT
Выполни в терминале:
claude mcp add apiverket-mcp-server -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.