MCP server for Swiss labor market data (SECO/AMSTAT) โ Arbeitsmarkt & Stellensuche
Project description
๐จ๐ญ Part of the Swiss Public Data MCP Portfolio
๐ผ SECO Labor Market MCP Server
๐ English | Deutsch
An MCP (Model Context Protocol) server for Swiss labor market data from SECO (Staatssekretariat fรผr Wirtschaft) and AMSTAT via opendata.swiss.
Overview
This server connects AI models to Swiss labor market statistics โ unemployment rates, job seekers, open positions, youth unemployment, and occupational breakdowns โ all without requiring an API key.
Primary audiences:
- ๐ซ Schulamt / Education planning โ youth unemployment, vocational guidance data
- ๐ Research & analysis โ labor market trends, cantonal comparisons
- ๐ค AI agents โ automated labor market monitoring and reporting
Anchor query:
"Welche Berufsgruppen haben im Kanton Zรผrich die hรถchste Jugendarbeitslosigkeit, und welche Lehrberufe unterliegen der Stellenmeldepflicht?"
โ More use cases by audience โ
Data Sources (Phase 1 โ No Auth Required)
| Source | Description | Status |
|---|---|---|
| opendata.swiss | CKAN metadata catalog with SECO dataset CSVs | โ Live |
| arbeit.swiss | Monthly press reports (PDF, structured URL pattern) | โ Live |
| amstat.ch | AMSTAT reference portal | โ ๏ธ JavaScript SPA, no public REST API |
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ seco-labor-mcp โ
โ โ
โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ FastMCP โ โ 9 MCP Tools โ โ
โ โ Server โโโโโบโ seco_search_datasets โ โ
โ โ (stdio / โ โ seco_get_dataset โ โ
โ โ SSE) โ โ seco_get_unemployment_* โ โ
โ โโโโโโโโโโโโโโโ โ seco_get_youth_* โ โ
โ โ โ seco_get_job_seekers โ โ
โ โผ โ seco_get_open_positions โ โ
โ โโโโโโโโโโโโโโโ โ seco_get_monthly_url โ โ
โ โ httpx โ โ seco_list_cantons โ โ
โ โ async โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โโโโโโโโฌโโโโโโโ โ
โโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ opendata.swiss CKAN API โ
โ https://opendata.swiss/api/3/ โ
โ action/package_search โ
โ action/package_show โ
โโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SECO Data Resources โ
โ CSV / XLSX / PDF Downloads โ
โ (monthly labor market data) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Tools
| Tool | Description | Key Use Case |
|---|---|---|
seco_search_datasets |
Search SECO datasets on opendata.swiss | Discovery |
seco_get_dataset |
Full metadata + download links for a dataset | Data access |
seco_get_unemployment_overview |
National/cantonal unemployment figures | Labor market overview |
seco_get_youth_unemployment |
Youth unemployment (15โ24 year olds) | ๐ Berufswahlberatung |
seco_get_job_seekers |
Stellensuchende (broader than unemployed) | Training demand |
seco_get_open_positions |
Open positions โ leading indicator | Sector analysis |
seco_get_unemployment_by_occupation |
Breakdown by Berufshauptgruppe | ๐ Vocational guidance |
seco_get_monthly_report_url |
Generate/verify PDF report URL | Source access |
seco_list_cantons |
All 26 canton codes and names | Utility |
Installation
Claude Desktop (stdio)
Add to claude_desktop_config.json:
{
"mcpServers": {
"seco-labor": {
"command": "uvx",
"args": ["seco-labor-mcp"]
}
}
}
Cloud / SSE
pip install seco-labor-mcp
MCP_TRANSPORT=sse PORT=8000 seco-labor-mcp
The SSE server binds to 127.0.0.1 (loopback) by default to prevent
NeighborJack on shared networks. For container deployments where you actually
need to accept traffic from outside the container, set HOST=0.0.0.0
explicitly โ ideally in your Dockerfile / orchestrator config, and only behind
an upstream proxy or firewall:
HOST=0.0.0.0 MCP_TRANSPORT=sse PORT=8000 seco-labor-mcp # container only
Development
git clone https://github.com/malkreide/seco-labor-mcp.git
cd seco-labor-mcp
pip install -e ".[dev]"
pytest tests/ -m "not live" -v
Usage Examples
Search for youth unemployment data
Tool: seco_search_datasets
Input: { "query": "Jugendarbeitslosigkeit Alter", "limit": 5 }
Get cantonal unemployment for Zรผrich
Tool: seco_get_unemployment_overview
Input: { "canton": "ZH", "response_format": "markdown" }
Get monthly report URL
Tool: seco_get_monthly_report_url
Input: { "year": 2026, "month": 2, "language": "de" }
Key Concepts
Arbeitslose vs. Stellensuchende
Eselsbrรผcke: Arbeitslose โ Stellensuchende โ Arbeitslose sind eine Teilmenge.
| Term | Definition | Dec 2025 |
|---|---|---|
| Arbeitslose | RAV-registered, immediately available | ~149'000 (3.2%) |
| Stellensuchende | All RAV-registered (incl. training programs) | ~233'900 |
Youth Unemployment Seasonality
- July/August: Sharp increase (school leavers without placements)
- September/October: Decline (apprenticeship starts)
- The residual that remains after the autumn decline signals structural need for bridge programs (Brรผckenangebote)
Stellenmeldepflicht (since 2020)
Occupations with โฅ5% unemployment rate must be reported to the RAV before posting publicly. The list changes annually. This is directly relevant for vocational counseling โ these professions have highest availability for Swiss job seekers.
Portfolio Synergies
| Server | Synergy |
|---|---|
swiss-statistics-mcp |
BFS population/employment data for deeper context |
zurich-opendata-mcp |
City of Zurich-level education and social data |
swiss-snb-mcp |
Economic context (GDP, wages) for labor market interpretation |
fedlex-mcp |
ALV (Arbeitslosenversicherung) legislative framework |
Known Limitations
amstat.arbeit.swisshas no public REST API (JavaScript SPA) โ workaround via CKAN- Occupational/sectoral detail requires CSV download from SECO resources
- Monthly press report URL patterns may vary for older reports
- Cantonal sub-municipal data not available at this level
Phase 2 roadmap:
- Automatic CSV caching with 24h TTL
- Direct XLSX parsing for cantonal breakdowns
- Integration with
zh-education-mcpfor Schulamt-specific correlations
Data License
SECO data published on opendata.swiss is under Creative Commons CCZero (public domain).
Source: Staatssekretariat fรผr Wirtschaft (SECO) โ seco.admin.ch
๐ก๏ธ Safety & Limits
| Aspect | Details |
|---|---|
| Access | Read-only (readOnlyHint: true) โ the server cannot modify or delete any data |
| Personal data | No personal data โ all sources are aggregated, anonymous public statistics |
| Rate limits | No enforced external limits; server caps queries at 20 results by default; 30 s HTTP timeout |
| Authentication | No API keys required โ opendata.swiss and arbeit.swiss are publicly accessible |
| Licenses | SECO data under Creative Commons CCZero (public domain) |
| Terms of Service | Subject to ToS of: opendata.swiss, SECO, arbeit.swiss |
| GDPR / DSG | Fully compliant โ no personal data transmitted or stored; all data is official public statistics |
Contributing
See CONTRIBUTING.md for development guidelines.
Security
See SECURITY.md for the security posture and how to report a vulnerability.
License
Released under the MIT License โ Copyright ยฉ 2026 Hayal Oezkan.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file seco_labor_mcp-0.3.3.tar.gz.
File metadata
- Download URL: seco_labor_mcp-0.3.3.tar.gz
- Upload date:
- Size: 85.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a7d2f78c594aaca34c48d164416def6ac439bd194617b730569021b8ccd7505
|
|
| MD5 |
bcbb352ac841c4c48b77624410d05ea0
|
|
| BLAKE2b-256 |
6198cf06c3e379f26b44b2b2bd6add622b763b0c3717a558bbadb574436cff5f
|
File details
Details for the file seco_labor_mcp-0.3.3-py3-none-any.whl.
File metadata
- Download URL: seco_labor_mcp-0.3.3-py3-none-any.whl
- Upload date:
- Size: 23.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bda038d30a00920bbccd6fadebf5bf78f529de0c74d046b264c0df3789859178
|
|
| MD5 |
5b45e0619f8216d244c1a40528e471d0
|
|
| BLAKE2b-256 |
fc10309580f84bc3823b4a124b4354bc756bb49d247ecc1b0fed8bff6be86e6a
|