Back to Browse

Swiss Culture MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

BAK cultural heritage, ISOS, living traditions, RSS

About

BAK cultural heritage, ISOS, living traditions, RSS

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 2 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (49/50 approved).

4 files analyzed Β· 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-malkreide-swiss-culture-mcp": {
      "args": [
        "swiss-culture-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

πŸ‡¨πŸ‡­ Part of the Swiss Public Data MCP Portfolio

πŸ›οΈ swiss-culture-mcp

Version License: MIT Python 3.11+ MCP Data Source CI

MCP server for Swiss cultural heritage data from the Federal Office of Culture (BAK) β€” ISOS townscapes, Living Traditions, cultural prizes, press releases. No API key required.

🌐 English | Deutsch


Overview

swiss-culture-mcp makes Swiss cultural data accessible to AI assistants. The server connects LLMs like Claude with Switzerland's national cultural heritage: from protected townscapes (ISOS) to living traditions of intangible cultural heritage and current cultural awards.

Sources: geo.admin.ch REST API Β· news.admin.ch RSS Β· opendata.swiss CKAN Β· lebendige-traditionen.ch

No API key required. All data sources are publicly available (Open Government Data).

Anchor demo query: "Which protected townscapes are there in the school districts of the city of Zurich, and what living traditions are practised there?"


Features

  • 🏘️ ISOS search – Federal Inventory of Swiss Townscapes Worth Protecting by name, canton or settlement type
  • πŸ“œ Living Traditions – 228 entries of Swiss intangible cultural heritage
  • πŸ† Cultural prizes – Swiss Film Prize, Grand Prix Literature, Music Prize and more
  • πŸ“° BAK press releases – current news from the Federal Office of Culture
  • πŸ“¦ Open data catalogue – BAK datasets on opendata.swiss
  • ☁️ Dual transport – stdio for Claude Desktop, Streamable HTTP for cloud deployment
#ToolDescription
1bak_search_isosSearch ISOS townscapes by place name
2bak_isos_by_kantonList all ISOS objects in a canton
3bak_get_isos_detailGet full details of an ISOS object
4bak_isos_by_kategorieFilter ISOS by settlement type (Stadt, Dorf, etc.)
5bak_isos_statisticsISOS inventory statistics (sampled by canton)
6bak_get_newsCurrent BAK press releases
7bak_get_kulturpreiseSwiss cultural prizes (Film Prize, Grand Prix Literature, etc.)
8bak_get_opendataBAK datasets on opendata.swiss
9bak_list_traditionsList Switzerland's Living Traditions
10bak_get_tradition_detailGet detailed description of a tradition

3 Resources: bak://isos/kantone Β· bak://isos/kategorien Β· bak://kulturpreise/uebersicht


Data Sources

SourceAPI TypeContent
geo.admin.chREST MapServerISOS (Federal Inventory of Swiss Townscapes)
news.admin.chRSS FeedBAK press releases, cultural prizes
opendata.swissCKAN REST APIBAK open data datasets
lebendige-traditionen.chHTML Fetch228 entries of intangible cultural heritage

Prerequisites

  • Python 3.11+
  • uv or pip
  • No API keys required

Installation

# Recommended: uvx (no install step needed)
uvx swiss-culture-mcp

# Alternative: pip
pip install swiss-culture-mcp

Quickstart

# Start the server (stdio mode for Claude Desktop)
uvx swiss-culture-mcp

Try it immediately in Claude Desktop:

"Show me all protected townscapes in the canton of GraubΓΌnden" "Which living traditions are practised in canton Appenzell?" "Which Swiss cultural prizes were awarded in 2026?"


Configuration

Environment Variables

VariableDefaultDescription
MCP_TRANSPORTstdioTransport: stdio or streamable_http
MCP_HOST127.0.0.1Bind host for HTTP transport (loopback by default)
MCP_PORT8000Port for HTTP transport
MCP_ALLOW_PUBLIC_BINDfalseIf true, permits binding 0.0.0.0 without auth. Set this only behind an authenticating reverse proxy (e.g. Cloudflare Access, oauth2-proxy).
LOG_LEVELINFODEBUG, INFO, WARNING, ERROR β€” structured JSON logs to stderr

Claude Desktop Configuration

{
  "mcpServers": {
    "swiss-culture": {
      "command": "uvx",
      "args": ["swiss-culture-mcp"]
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

After restarting Claude Desktop, all tools are available. Example queries:

  • "Show me all protected townscapes in the canton of GraubΓΌnden"
  • "What is the Alphorn and BΓΌchelspiel tradition?"
  • "Which Swiss cultural prizes were awarded in 2026?"
  • "Is the old town of Stein am Rhein in the ISOS inventory?"
  • "Which living traditions are practised in canton Appenzell?"

Cloud Deployment (Streamable HTTP)

For use via claude.ai in the browser (e.g. on managed workstations without local software):

Render.com (recommended):

  1. Push/fork the repository to GitHub
  2. On render.com: New Web Service β†’ connect GitHub repo
  3. Set environment variables in the Render dashboard
  4. In claude.ai under Settings β†’ MCP Servers, add: https://your-app.onrender.com/mcp
# Docker / local HTTP mode (loopback only β€” safe default)
MCP_TRANSPORT=streamable_http MCP_PORT=8000 python -m swiss_culture_mcp.server

# Public bind (DANGEROUS β€” only behind an authenticating reverse proxy)
MCP_TRANSPORT=streamable_http MCP_HOST=0.0.0.0 MCP_ALLOW_PUBLIC_BIND=true \
    python -m swiss_culture_mcp.server

⚠️ Security: The server itself has no authentication. Binding to a public interface without an upstream auth layer turns it into an open proxy for the federal data sources. Always run an authenticating reverse proxy (Cloudflare Access, oauth2-proxy, nginx + auth_request) in front of 0.0.0.0 deployments.


Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   Claude / AI   │────▢│   Swiss Culture MCP      │────▢│  geo.admin.ch REST       β”‚
β”‚   (MCP Host)    │◀────│   (MCP Server)           │◀────│  news.admin.ch RSS       β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜     β”‚                          β”‚     β”‚  opendata.swiss CKAN     β”‚
                        β”‚  10 Tools Β· 3 Resources  β”‚     β”‚  lebendige-traditionen   β”‚
                        β”‚  Stdio | Streamable HTTP  β”‚     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                        β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Project Structure

swiss-culture-mcp/
β”œβ”€β”€ src/
β”‚   └── swiss_culture_mcp/
β”‚       β”œβ”€β”€ __init__.py
β”‚       └── server.py          # All 10 tools, 3 resources
β”œβ”€β”€ tests/
β”‚   β”œβ”€β”€ conftest.py            # pytest configuration
β”‚   └── test_server.py         # 36 tests (unit + live)
β”œβ”€β”€ pyproject.toml
β”œβ”€β”€ CHANGELOG.md
β”œβ”€β”€ CONTRIBUTING.md            # Contribution guide (English)
β”œβ”€β”€ CONTRIBUTING.de.md         # Contribution guide (German)
β”œβ”€β”€ SECURITY.md               # Security policy & posture (English)
β”œβ”€β”€ SECURITY.de.md            # Security policy & posture (German)
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md                  # This file (English)
└── README.de.md               # German version

MCP Protocol Version

This server speaks two protocol eras over the same endpoint. The client's first request on a connection decides which one applies; a later claim from the other era is refused.

EraRevisionWho reaches it
initialize handshake2024-11-05 … 2025-11-25What today's clients speak. The server answers with the revision asked for, or with the 2025-11-25 ceiling when the request asks for something newer.
Per-request envelope2026-07-28A request carrying the 2026-07-28 _meta envelope opens a modern connection.

Both revisions are pinned in tests/test_protocol_version.py and asserted against the installed SDK, so a Dependabot bump of mcp cannot move either one silently. This server builds no ASGI app to send an initialize through, so the gate asserts the SDK constants rather than a measured response β€” the weaker form, named rather than left unsaid.

Note that the SDK's LATEST_PROTOCOL_VERSION is an alias for the modern era, not for the handshake era β€” pinning against it alone would leave the era that current clients actually negotiate free to drift.

Update policy. When the gate fails, do not edit the constant blindly: read the spec changelog between the two revisions, verify the server still behaves, then move the constant, this section, README.de.md and CHANGELOG.md together.


Testing

# Unit tests (no API key required)
PYTHONPATH=src pytest tests/ -m "not live"

# Integration tests (live API calls)
PYTHONPATH=src pytest tests/ -m "live"

Example Use Cases

Schools / Education

"Which protected townscapes are there in the school districts of the city of Zurich?"
β†’ bak_isos_by_kanton(kanton="ZH") + bak_get_isos_detail(...)

"Find living traditions for a project week on the theme of cultural heritage"
β†’ bak_list_traditions() + bak_get_tradition_detail(slug="...")

"Which UNESCO World Heritage Sites are also in ISOS?"
β†’ bak_search_isos(query="...") + bak_get_opendata(query="UNESCO")

City Administration / Spatial Planning

"Is the building at address X within an ISOS perimeter?"
β†’ bak_search_isos(query="community/place name")

"Which BAK datasets are available for GIS integration?"
β†’ bak_get_opendata() β†’ WMS/WFS URLs for GIS software

AI Working Group / Demos

"Show current cultural policy of the federal government"
β†’ bak_get_news() + bak_get_kulturpreise()
β†’ More use cases by audience β†’

Safety & Limits

AspectDetails
AccessRead-only β€” the server cannot modify or delete any data
Personal dataNo personal data β€” all sources are aggregated, public cultural heritage data
Rate limitsBuilt-in per-query caps (e.g. max 100 ISOS results, 50 news items, 200 category entries)
Timeout20 seconds per API call
AuthenticationNo API keys required β€” all 4 data sources are publicly accessible
LicensesAll data under open licenses (Open Government Data): geo.admin.ch, opendata.swiss, news.admin.ch
Terms of ServiceSubject to ToS of the respective data sources: geo.admin.ch, opendata.swiss, news.admin.ch, lebendige-traditionen.ch

Known Limitations

  • ISOS statistics: Sample-based per canton (not exhaustive for all cantons)
  • Living Traditions: HTML scraping – may break if lebendige-traditionen.ch changes its structure
  • BAK news/prizes: RSS feed limited to the most recent entries
  • opendata.swiss CKAN: Full-text search may return results from other publishers
  • The addresses this server hands out are measured, not assumed. scripts/record_fixtures.py re-checks every one on each run, together with four controls (an invented geo.admin.ch service, an invented BAK path, an invented news organisation number, an invented tradition slug). On 2026-08-08 one was dead: bak_isos_overview published .../home/kulturerbe/baukultur.html as its BAK source β€” HTTP 404, as is the whole kulturerbe branch. It was replaced by the BAK root, which verifiably answers 200, not by a guessed replacement URL.
  • Everything else held. geo.admin.ch, opendata.swiss, gisos, isos, the news feed with org-nr=314 and the tradition pages all return real content. That null result is recorded too: without it the next pass starts from nothing.

Synergies with Other MCP Servers

swiss-culture-mcp can be combined with other servers in the portfolio:

CombinationUse Case
+ swiss-transport-mcpCultural tourism: day trips to traditions by public transport
+ zurich-opendata-mcpLocal cultural atlas: ISOS + Zurich city events
+ global-education-mcpCultural education in international comparison
+ fedlex-mcpCultural property transfer act + BAK enforcement practice
+ swiss-statistics-mcpCultural expenditure by canton (BFS data)

Changelog

See CHANGELOG.md


Contributing

Contributions are welcome β€” see CONTRIBUTING.md.


Security

Security posture, hardening details and the responsible-disclosure process are documented in SECURITY.md.


License

MIT License β€” see LICENSE


Author

Hayal Oezkan Β· malkreide


Credits & Related Projects

Installation

Run via uv's uvx β€” no clone or manual install needed. Add to your MCP client config (mcpServers for Claude Desktop, Cursor and Windsurf; use a top-level servers key for VS Code in .vscode/mcp.json):

{
  "mcpServers": {
    "swiss-culture-mcp": {
      "command": "uvx",
      "args": [
        "swiss-culture-mcp"
      ]
    }
  }
}

Reviews

No reviews yet

Be the first to review this server!