MCP Server for Swiss cultural heritage data โ SIK-ISEA, Nationalmuseum, Nationalbibliothek
Project description
๐จ๐ญ Part of the Swiss Public Data MCP Portfolio
๐๏ธ swiss-cultural-heritage-mcp
MCP Server for Swiss cultural heritage โ SIK-ISEA artists, Nationalmuseum collections, and the Nationalbibliothek bibliography
Overview
swiss-cultural-heritage-mcp provides AI-native access to three major Swiss cultural heritage data sources, all without authentication:
| Source | Data | API |
|---|---|---|
| SIK-ISEA | 50,000+ Swiss artists (biographies, techniques, cantons) | REST/CSV |
| Nationalmuseum (SNM) | Museum collections (numismatics, seals, special collections) | opendata.swiss CKAN |
| Nationalbibliothek (NB) | Swiss national bibliography (Helveticat) | OAI-PMH |
This server completes the humanistic dimension of the Swiss public data portfolio โ history, literature, and art โ alongside existing servers for law (fedlex-mcp), transport, statistics, and more.
Anchor demo query: "Find works by Zurich-based painters from the 19th century in the Nationalmuseum, and cross-reference with their biography in the SIK-ISEA artist database."
Features
- ๐๏ธ 9 tools, 2 resources, 2 prompts across three data sources
- ๐
heritage_cross_searchโ parallel search across all three sources in a single call - ๐ Bilingual output (Markdown / JSON)
- ๐ No API key required โ all data under open licenses
- โ๏ธ Dual transport โ stdio (Claude Desktop) + Streamable HTTP (cloud)
- ๐ Prompt templates for art research and finding educational materials
Prerequisites
- Python 3.11+
- uv (recommended) or pip
Installation
# Clone the repository
git clone https://github.com/malkreide/swiss-cultural-heritage-mcp.git
cd swiss-cultural-heritage-mcp
# Install
pip install -e .
# or with uv:
uv pip install -e .
Or with uvx (no permanent installation):
uvx swiss-cultural-heritage-mcp
Quickstart
# stdio (for Claude Desktop)
python -m swiss_cultural_heritage_mcp.server
# Streamable HTTP (port 8000)
python -m swiss_cultural_heritage_mcp.server --http --port 8000
Try it immediately in Claude Desktop:
"Who is Ferdinand Hodler?" "What coins does the Nationalmuseum have from Zurich?" "Find publications about Volksschule in the Swiss national bibliography"
Configuration
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"swiss-cultural-heritage": {
"command": "python",
"args": ["-m", "swiss_cultural_heritage_mcp.server"]
}
}
}
Or with uvx:
{
"mcpServers": {
"swiss-cultural-heritage": {
"command": "uvx",
"args": ["swiss-cultural-heritage-mcp"]
}
}
}
Config file locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Cloud Deployment (SSE for browser access)
For use via claude.ai in the browser (e.g. on managed workstations without local software):
Render.com (recommended):
- Push/fork the repository to GitHub
- On render.com: New Web Service โ connect GitHub repo
- Set start command:
python -m swiss_cultural_heritage_mcp.server --http --port 8000 - In claude.ai under Settings โ MCP Servers, add:
https://your-app.onrender.com/sse
๐ก "stdio for the developer laptop, SSE for the browser."
Available Tools
SIK-ISEA (Swiss Art Research)
| Tool | Description |
|---|---|
heritage_search_artists |
Search 50,000+ Swiss artists by name, region, period, technique |
heritage_get_artist |
Full artist profile by SIK-ISEA ID |
Nationalmuseum (SNM)
| Tool | Description |
|---|---|
heritage_search_museum_datasets |
Search SNM datasets on opendata.swiss |
heritage_browse_collection |
Browse objects within a collection via CKAN DataStore |
Nationalbibliothek (NB)
| Tool | Description |
|---|---|
heritage_search_helveticat |
Search Swiss national bibliography via OAI-PMH |
heritage_list_nb_collections |
List available OAI-PMH sets |
heritage_get_publication |
Full Dublin Core metadata for a publication |
Cross-Source
| Tool | Description |
|---|---|
heritage_cross_search |
Parallel search across SIK-ISEA + SNM + NB |
Example Use Cases
| Query | Tool |
|---|---|
| "Who is Ferdinand Hodler?" | heritage_get_artist |
| "Find 19th-century painters from canton Bern" | heritage_search_artists |
| "What coins from Zurich does the Nationalmuseum have?" | heritage_browse_collection |
| "Find publications about Volksschule" | heritage_search_helveticat |
| "Search for everything about Sophie Taeuber-Arp" | heritage_cross_search |
Architecture
โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Claude / AI โโโโโโถโ Swiss Cultural Heritage MCP โโโโโโถโ SIK-ISEA โ
โ (MCP Host) โโโโโโโ (MCP Server) โโโโโโโ REST/CSV โ
โโโโโโโโโโโโโโโโโโโ โ โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ 9 Tools ยท 2 Resources โโโโโโถโ Nationalmuseum (SNM) โ
โ 2 Prompts โโโโโโโ opendata.swiss / CKAN โ
โ Stdio | SSE โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โโโโโโถโ Nationalbibliothek (NB) โ
โ No authentication required โโโโโโโ OAI-PMH (Helveticat) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Data Source Characteristics
| Source | Protocol | Coverage | Auth |
|---|---|---|---|
| SIK-ISEA | REST/CSV | 50,000+ Swiss artists | None |
| Nationalmuseum | CKAN DataStore | Museum collections | None |
| Nationalbibliothek | OAI-PMH | Swiss national bibliography | None |
Project Structure
swiss-cultural-heritage-mcp/
โโโ src/swiss_cultural_heritage_mcp/
โ โโโ __init__.py # Package
โ โโโ server.py # 9 tools, 2 resources, 2 prompts
โโโ tests/
โ โโโ test_server.py # Unit + integration tests (mocked HTTP)
โโโ .github/workflows/ci.yml # GitHub Actions (Python 3.11/3.12/3.13)
โโโ pyproject.toml
โโโ CHANGELOG.md
โโโ CONTRIBUTING.md
โโโ LICENSE
โโโ README.md # This file (English)
โโโ README.de.md # German version
Known Limitations
- SIK-ISEA: Artist data is updated periodically; very recent acquisitions may not yet be reflected
- Nationalmuseum: Only datasets published on opendata.swiss are accessible; not all SNM collections are available
- Nationalbibliothek: OAI-PMH harvesting is rate-limited; large result sets require pagination
- Cross-search: Response time depends on the slowest of the three sources
Testing
# Unit tests (no API key required)
PYTHONPATH=src pytest tests/ -m "not live"
# Integration tests (live API calls)
pytest tests/ -m "live"
Changelog
See CHANGELOG.md
Contributing
See CONTRIBUTING.md
License
MIT License โ see LICENSE
Author
Hayal Oezkan ยท malkreide
Credits & Related Projects
- SIK-ISEA: www.sik-isea.ch โ Swiss Institute for Art Research
- Nationalmuseum: www.nationalmuseum.ch / opendata.swiss
- Nationalbibliothek: www.nb.admin.ch โ Swiss National Library
- Protocol: Model Context Protocol โ Anthropic / Linux Foundation
- Related: eth-library-mcp โ ETH Library: full Swiss library coverage (ETH = science, NB = humanities)
- Related: fedlex-mcp โ Cultural heritage law + primary legislation
- Related: zurich-opendata-mcp โ Spatial-historical: museum objects + Zurich geodata
- Portfolio: Swiss Public Data MCP Portfolio
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 swiss_cultural_heritage_mcp-0.1.0.tar.gz.
File metadata
- Download URL: swiss_cultural_heritage_mcp-0.1.0.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9659a9af2630389440f7e96a7480800d39dce52cda427cb9fbcf603392a77226
|
|
| MD5 |
cd955d29bea2d9a02e82cfc03ba8a45d
|
|
| BLAKE2b-256 |
f778cc1e1de8e64dcf0fc2ccf29f1244d6ec74468dd478edd857b6ed8f793055
|
Provenance
The following attestation bundles were made for swiss_cultural_heritage_mcp-0.1.0.tar.gz:
Publisher:
publish.yml on malkreide/swiss-cultural-heritage-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_cultural_heritage_mcp-0.1.0.tar.gz -
Subject digest:
9659a9af2630389440f7e96a7480800d39dce52cda427cb9fbcf603392a77226 - Sigstore transparency entry: 1156405987
- Sigstore integration time:
-
Permalink:
malkreide/swiss-cultural-heritage-mcp@403af03b2136b056002dd172e8d885dcfa9ef6f2 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@403af03b2136b056002dd172e8d885dcfa9ef6f2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file swiss_cultural_heritage_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: swiss_cultural_heritage_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bd562acfb0244c36d6952540a26111a33e87fa7e27a91854460cc330d8da870
|
|
| MD5 |
eaa807b90358bbbf3cfe93965fc7c8d0
|
|
| BLAKE2b-256 |
bef502fce54859c23d37bd6149534d872d4ff1ec3d4c007ae633d318c697d864
|
Provenance
The following attestation bundles were made for swiss_cultural_heritage_mcp-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on malkreide/swiss-cultural-heritage-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_cultural_heritage_mcp-0.1.0-py3-none-any.whl -
Subject digest:
6bd562acfb0244c36d6952540a26111a33e87fa7e27a91854460cc330d8da870 - Sigstore transparency entry: 1156405994
- Sigstore integration time:
-
Permalink:
malkreide/swiss-cultural-heritage-mcp@403af03b2136b056002dd172e8d885dcfa9ef6f2 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@403af03b2136b056002dd172e8d885dcfa9ef6f2 -
Trigger Event:
release
-
Statement type: