Tilastokeskus StatFin MCP Server
Production-grade MCP server for Statistics Finland's StatFin database. Enables AI assistants like Claude to browse, search, and query Finnish statistical data.
README
Tilastokeskus StatFin MCP Server
Production-grade Model Context Protocol (MCP) server for Statistics Finland's StatFin database. Enables AI assistants like Claude to browse, search, and query Finnish statistical data.
Purpose
This project makes Finland's official statistics accessible to AI assistants through the Model Context Protocol (MCP). It bridges the gap between natural language queries and the structured PxWeb API.
Why This Exists
The Problem: Statistics Finland maintains one of the world's most comprehensive national statistics databases with 4,500+ tables covering population, employment, housing, economy, and more. However, the PxWeb API requires:
- Knowledge of table IDs, variable codes, and value codes
- Understanding of the hierarchical data structure
- Correct query formatting with specific filter types
- Awareness of API rate limits and response sizes
This makes it difficult for users to answer simple questions like "What is Helsinki's population?" without significant technical knowledge.
The Solution: This MCP server provides 7 tools that allow AI assistants to:
- Discover relevant tables through natural language search
- Explore the database structure and available variables
- Query specific data with proper filtering and pagination
- Handle rate limiting, caching, and error recovery automatically
Use Cases
- Journalists asking "How has unemployment changed since COVID?"
- Researchers comparing regional population trends
- Analysts tracking housing price divergence between Helsinki and other cities
- Citizens curious about birth rates, migration, or energy consumption
- Developers building applications that need Finnish statistical data
Design Philosophy
- LLM-first: Tool descriptions, parameter hints, and output schemas are optimized for AI consumption
- Guided workflow: Each tool guides the LLM to the next logical step
- Fail-safe: Query size estimation prevents expensive API calls; rate limiting protects against quota exhaustion
- Cache-smart: Historical data is cached until StatFin updates it, minimizing redundant API calls
Features
- 7 MCP Tools for comprehensive data access
- 149 subject areas covering population, employment, education, economy, environment, and more
- ~4,500+ statistical tables with decades of historical data
- Smart caching with timestamp validation - historical data stays cached until updated
- Rate limiting (8 req/min per instance) to respect API limits
- Multi-language support (Finnish, English, Swedish)
Documentation
- ARCHITECTURE.md - Technical architecture and design decisions
- BLOGS.md - Blog post ideas and data stories (English)
- BLOGIT.md - Blog post ideas and data stories (Finnish)
Data Source & License
Statistics Finland StatFin Database
- Official statistics of Finland
- Data updated regularly (varies by table)
- Free to use, no API key required
Data License: Statistics Finland data is licensed under CC BY 4.0. When using the data, provide attribution: "Source: Statistics Finland"
Installation
Local Installation
Clone and build the server to run on your machine.
git clone https://github.com/your-org/statfin-mcp.git
cd statfin-mcp
npm install
npm run build
<details> <summary>Claude Desktop</summary>
Add to your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"statfin": {
"command": "node",
"args": ["/absolute/path/to/statfin-mcp/dist/server.js"]
}
}
}
</details>
<details> <summary>Claude Code</summary>
claude mcp add statfin node /absolute/path/to/statfin-mcp/dist/server.js
Verify with:
claude mcp list
</details>
<details> <summary>OpenAI Codex / ChatGPT</summary>
Add to ~/.codex/config.toml:
[mcp.statfin]
command = "node"
args = ["/absolute/path/to/statfin-mcp/dist/server.js"]
transport = "stdio"
</details>
<details> <summary>Cursor</summary>
In Cursor settings, add MCP server with command:
- Name:
statfin - Command:
node - Args:
/absolute/path/to/statfin-mcp/dist/server.js
</details>
Remote Server
Connect to a hosted instance without local installation.
<details> <summary>Claude Code</summary>
claude mcp add --transport http statfin https://your-server.example.com/mcp
Verify with:
claude mcp list
</details>
<details> <summary>Claude Desktop</summary>
Add to your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"statfin": {
"type": "http",
"url": "https://your-server.example.com/mcp"
}
}
}
</details>
<details> <summary>OpenAI Codex / ChatGPT</summary>
Add to ~/.codex/config.toml:
[mcp.statfin]
url = "https://your-server.example.com/mcp"
transport = "http"
</details>
<details> <summary>Cursor</summary>
In Cursor settings, add MCP server:
- Name:
statfin - URL:
https://your-server.example.com/mcp - Transport: HTTP
</details>
Running the Server
# Development mode (stdio transport, watch mode)
npm run dev
# Production HTTP server
npm start
# With custom port
PORT=8080 npm start
# Docker
docker-compose up --build
MCP Tools
| Tool | Description |
|---|---|
search_statistics |
Search for tables by keyword (primary discovery) |
list_subject_areas |
Browse all 149 topic areas |
list_tables |
List tables in a subject area |
get_table_metadata |
Get table structure and variables |
get_variable_values |
Get all codes for a variable (regions, years) |
query_table |
Execute data queries |
get_api_status |
Check server health and rate limits |
Example Workflows
Basic: Helsinki Population Trend
query_table({
tableId: "statfin_vaerak_pxt_11re.px",
selections: [
{ variable: "Alue", filter: "item", values: ["KU091"] }, // Helsinki
{ variable: "Ikä", filter: "item", values: ["SSS"] }, // All ages
{ variable: "Sukupuoli", filter: "item", values: ["SSS"] }, // Total
{ variable: "Vuosi", filter: "top", top: 10 } // Last 10 years
]
})
// Returns: Helsinki population 2015-2024 (628K → 684K)
Advanced Example Queries
Education: University Student Employment by Field
Which fields of study have the highest employment rates for students?
// Table: Student employment by education level and field
query_table({
tableId: "statfin_tyokay_pxt_13g2.px",
selections: [
{ variable: "Koulutusaste", filter: "item", values: ["7"] }, // University level
{ variable: "Sukupuoli", filter: "item", values: ["SSS"] }, // All genders
{ variable: "Maakunta", filter: "item", values: ["SSS"] }, // Whole country
{ variable: "Vuosi", filter: "top", top: 3 } // Last 3 years
]
})
// Analyze: Compare IT vs humanities employment rates
Housing: Rent Price Trends by Postal Code
Track rental market changes in Helsinki city center vs suburbs
// Table: Free-market rental prices by postal code, quarterly
query_table({
tableId: "statfin_asvu_pxt_13eb.px",
selections: [
{ variable: "Postinumero", filter: "item", values: [
"00100", // Helsinki center (Kruununhaka)
"00500", // Sörnäinen
"02100", // Espoo Tapiola
"01300" // Vantaa Tikkurila
]},
{ variable: "Huoneluku", filter: "item", values: ["02"] }, // 2-room apartments
{ variable: "Vuosineljännes", filter: "top", top: 20 } // 5 years quarterly
]
})
// Analyze: Which areas are gentrifying fastest?
Migration: International Migration Flows
Analyze emigration vs immigration patterns over decades
// Table: Migration by month and type
query_table({
tableId: "statfin_muutl_pxt_119z.px",
selections: [
{ variable: "Sukupuoli", filter: "item", values: ["SSS"] },
{ variable: "Tapahtumakuukausi", filter: "item", values: ["SSS"] }, // Annual totals
{ variable: "Tiedot", filter: "item", values: [
"vm41", // Immigration
"vm42", // Emigration
"vm43" // Net migration
]},
{ variable: "Vuosi", filter: "top", top: 30 } // 30-year trend
]
})
// Analyze: How has Finland's migration balance changed since 1990?
Crime: Monthly Crime Statistics Trends
Track reported crimes by category with seasonal patterns
// Table: Reported crimes by month (preliminary data)
query_table({
tableId: "statfin_rpk_pxt_13jt.px",
selections: [
{ variable: "Rikosryhmä ja teonkuvauksen tarkenne", filter: "item", values: [
"101T603", // All crimes total
"101T504X406", // Violent crimes
"101T161" // Property crimes
]},
{ variable: "Tiedot", filter: "item", values: ["rikokset_lkm"] },
{ variable: "Kuukausi", filter: "top", top: 60 } // 5 years monthly
]
})
// Analyze: Seasonal crime patterns, COVID impact on crime rates
Electricity: Power Generation Mix Evolution
How has Finland's electricity production evolved toward renewables?
// Table: Electricity supply and production by source
query_table({
tableId: "statfin_salatuo_pxt_11sr.px",
selections: [
{ variable: "Tiedot", filter: "item", values: [
"sahkon_tuot", // Total production
"vesivoima", // Hydropower
"tuulivoima", // Wind power
"ydinvoima", // Nuclear
"fossiiliset" // Fossil fuels
]},
{ variable: "Vuosi", filter: "top", top: 25 } // 25-year transition
]
})
// Analyze: Nuclear vs wind growth, fossil phase-out trajectory
Traffic: Road Accident Hotspots by Municipality
Which municipalities have the highest traffic accident rates?
// Table: Traffic accidents with injuries by area and road type
query_table({
tableId: "statfin_ton_pxt_12qh.px",
selections: [
{ variable: "Alue", filter: "item", values: [
"SSS", // Whole country (for comparison)
"KU091", // Helsinki
"KU092", // Vantaa
"KU049", // Espoo
"KU837", // Tampere
"KU853" // Turku
]},
{ variable: "Tielaji", filter: "item", values: ["SSS"] },
{ variable: "Osallinen", filter: "item", values: ["SSS"] },
{ variable: "Tiedot", filter: "item", values: [
"konn", // Total accidents
"kuolonn", // Fatal accidents
"loukonn" // Injury accidents
]},
{ variable: "Vuosi", filter: "top", top: 5 }
]
})
// Analyze: Per-capita accident rates, pedestrian vs vehicle involvement
Housing: Household Size and Building Type Changes
How are Finnish living patterns changing over time?
// Table: Households by size and building type
query_table({
tableId: "statfin_asas_pxt_116a.px",
selections: [
{ variable: "Talotyyppi", filter: "item", values: [
"1", // Detached houses
"2", // Attached houses
"3", // Apartment buildings
]},
{ variable: "Asuntokunnan koko", filter: "item", values: [
"1", // 1-person households
"2", // 2-person
"3", // 3-person
"4" // 4+ person
]},
{ variable: "Vuosi", filter: "top", top: 40 } // Since 1985
]
})
// Analyze: Rise of single-person households, apartment living trends
Electric Vehicles: Adoption Rate by Vehicle Type
Track the EV transition in Finland's vehicle fleet
// Table: New vehicle registrations by fuel type
query_table({
tableId: "statfin_merek_pxt_11ck.px",
selections: [
{ variable: "Ajoneuvoluokka", filter: "item", values: ["01"] }, // Passenger cars
{ variable: "Käyttövoima", filter: "item", values: [
"00", // Total
"01", // Petrol
"02", // Diesel
"04", // Electric
"05", // Plug-in hybrid
]},
{ variable: "Vuosi", filter: "top", top: 15 }
]
})
// Analyze: EV market share growth, diesel decline post-2015
Multi-Step Analysis Patterns
Cross-Domain Analysis: Education → Employment → Income
1. Find education completion rates by field
2. Get employment statistics for recent graduates
3. Query income data by education level
4. Compare: Which fields offer best ROI?
Time-Series with Regional Breakdown
1. Get national trend (Alue: "SSS")
2. Compare major cities (KU091, KU837, KU853)
3. Identify regional divergence patterns
4. Correlate with local economic indicators
Demographic Shift Analysis
1. Query population by age groups (1990-2024)
2. Get migration data for same period
3. Query birth/death rates
4. Model: Aging population impact on workforce
Common Region Codes
| Code | Description |
|---|---|
SSS |
Whole country (KOKO MAA) |
MK01-MK19 |
Regions (maakunta) |
KU091 |
Helsinki |
KU092 |
Vantaa |
KU049 |
Espoo |
Development
# Type checking
npm run typecheck
# Run unit tests
npm run test:run
# Run tests with coverage
npm run test:coverage
# Run integration tests (requires API access)
npm run test:integration
# Fetch fresh test fixtures
npm run test:fixtures:fetch
Environment Variables
| Variable | Default | Description |
|---|---|---|
PORT |
8080 | HTTP server port |
MCP_TRANSPORT |
stdio | Set to "http" for HTTP transport |
API_TOKEN |
- | Optional authentication token |
LOG_LEVEL |
info | Logging level (debug, info, warn, error) |
API Rate Limits
- StatFin API: 30 requests/minute total
- This server: 8 requests/minute per instance
- Designed for up to 3 concurrent Cloud Run instances
License
This project (code) is licensed under MIT. The statistical data accessed through this server is provided by Statistics Finland under CC BY 4.0.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。