Skip to main content

🇨🇭 Part of the Swiss Public Data MCP Portfolio

⚡ swiss-energy-mcp

Version License: MIT Python 3.11+ MCP Data Source Tests CI

MCP server for Swiss energy data from the Federal Office of Energy (SFOE/BFE) via GeoAdmin REST API and opendata.swiss — no API key required.

🇩🇪 Deutsche Version

swiss-energy-mcp demo – Claude asks for power plants near Wädenswil


Overview

swiss-energy-mcp gives AI assistants structured, location-based access to Switzerland's energy infrastructure. Built on open geodata from the Swiss Federal Office of Energy (SFOE/BFE) via the GeoAdmin REST API and the opendata.swiss catalogue — completely authentication-free.

The server is part of a growing portfolio of Swiss open data MCP servers. Think of it as the energy atlas counterpart to swiss-road-mobility-mcp: while the latter maps mobility, this server maps where Switzerland produces electricity, where solar potential exists, and which municipalities hold the "Energiestadt" label.

Anchor demo query: "Which power plants are within 20 km of the school in Wädenswil — and is the municipality an Energiestadt?"


Features

  • 🔍 10 ready-to-use tools covering all major energy data layers from SFOE/BFE
  • Power plants — all types: photovoltaic, hydro, wind, biomass, nuclear, with optional category filter
  • 💨 Wind turbines — detailed data incl. manufacturer, model, hub height, annual production
  • 💧 Hydropower plants — type, status, turbine capacity, expected annual output
  • ☀️ PV large installations — project name, capacity, annual/winter production, altitude
  • 🌿 Biogas plants — plant name, output
  • 🏙️ Energiestädte — municipalities with the Swiss "Energiestadt" label (score, year awarded, audits)
  • 🏠 Solar roof potential — suitability category, area, orientation, and slope per roof segment
  • 📊 Location energy profile — combines 5 layers into a single overview for any Swiss location
  • 🗂️ SFOE dataset search — full-text search across SFOE publications on opendata.swiss
  • Status check — verifies availability of both upstream APIs
  • ☁️ Dual transport — stdio for Claude Desktop, Streamable HTTP for cloud deployment

Prerequisites

  • Python 3.11+
  • uv (recommended) or pip

Installation

Claude Desktop (stdio transport)

Add to your claude_desktop_config.json:

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

Config file locations:

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

Local development

git clone https://github.com/malkreide/swiss-energy-mcp.git
cd swiss-energy-mcp
uv sync
uv run swiss-energy-mcp

Cloud / HTTP transport (Streamable HTTP)

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

SWISS_ENERGY_TRANSPORT=http uvx swiss-energy-mcp

💡 "stdio for the developer laptop, HTTP for the browser."


Quickstart

Once connected in Claude Desktop, try:

What power plants are within 20 km of Bern?
Show me all wind turbines in the Jura region.
Is Zürich an Energiestadt? What's their score?
What is the solar potential of rooftops near lat=47.37, lon=8.54?
Give me a full energy profile for the region around Lucerne.
Find SFOE datasets about hydropower.

Available Tools

Tool Description
energy_find_power_plants All electricity generation plants within a radius (optional category filter)
energy_find_wind_turbines Wind turbines with manufacturer, model, hub height
energy_find_hydro_plants Hydropower plants with capacity and expected output
energy_find_pv_installations Large PV installations with annual/winter production
energy_find_biogas_plants Biogas plants
energy_find_energy_cities Municipalities with "Energiestadt" label
energy_solar_potential Solar suitability of roof segments at a location
energy_location_profile Combined energy profile (5 layers) for a location
energy_search_bfe_datasets Full-text search over SFOE datasets on opendata.swiss
energy_check_status Check availability of GeoAdmin and opendata.swiss APIs

All tools accept WGS84 coordinates (lat/lon). Conversion to Swiss LV95 is handled internally.

Example Use Cases

Query Tool
"Power plants near Bern (20 km radius)?" energy_find_power_plants
"Wind turbines in the Jura?" energy_find_wind_turbines
"Is Zürich an Energiestadt?" energy_find_energy_cities
"Solar potential of rooftops near lat=47.37, lon=8.54?" energy_solar_potential
"Full energy profile for Lucerne region?" energy_location_profile
"SFOE datasets on hydropower?" energy_search_bfe_datasets

→ More use cases by audience →


Data Sources

Source URL Auth
GeoAdmin REST API (swisstopo) api3.geo.admin.ch None
opendata.swiss CKAN API opendata.swiss/api/3/action None

BFE Layers used:

  • ch.bfe.elektrizitaetsproduktionsanlagen
  • ch.bfe.windenergieanlagen
  • ch.bfe.statistik-wasserkraftanlagen
  • ch.bfe.photovoltaik-grossanlagen
  • ch.bfe.biogasanlagen
  • ch.bfe.energiestaedte
  • ch.bfe.solarenergie-eignung-daecher

Configuration

All variables use the SWISS_ENERGY_ prefix and are validated at startup.

Environment variable Default Description
SWISS_ENERGY_TRANSPORT stdio Transport mode: stdio or http
SWISS_ENERGY_HOST 127.0.0.1 Host for HTTP transport. Bind 0.0.0.0 only inside a container.
SWISS_ENERGY_PORT 8000 Port for HTTP transport
SWISS_ENERGY_CORS_ORIGINS https://claude.ai Comma-separated allowed CORS origins (HTTP transport)
SWISS_ENERGY_LOG_LEVEL INFO Log level: DEBUG / INFO / WARNING / ERROR
SWISS_ENERGY_HTTP_TIMEOUT 20 Upstream HTTP timeout in seconds

See .env.example for a template.


MCP Protocol Version

This server targets the MCP protocol version shipped with the pinned mcp SDK (mcp[cli] >= 1.20.0). SDK updates arrive monthly via Dependabot; protocol-version changes are recorded in CHANGELOG.md.

MCP Primitives

The server uses all three MCP primitives:

  • Tools — 10 read-only tools (see above). Every search tool returns an EnergyResponse envelope: structured results plus a Markdown summary, explicit source / license attribution, and a match_type field.
  • Resourceenergy://layers, the static catalogue of BFE GeoAdmin layers.
  • Promptenergy_site_assessment, a guided location-analysis template.

Development Phase

The server is in Phase 1 (read-only). See docs/roadmap.md for the phased architecture and docs/security.md for the egress allow-list, SSRF protection and trifecta assessment.


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, public infrastructure data
Rate limits Built-in per-query caps (max 50 search results, default 5 km radius)
Timeout 20 seconds per API call
Authentication No API keys required — both APIs are publicly accessible
Licenses All data under open licenses via opendata.swiss (OGD)
Terms of Service Subject to ToS of the respective data sources: GeoAdmin, opendata.swiss, SFOE/BFE

Architecture

┌─────────────────┐     ┌───────────────────────────┐     ┌──────────────────────────┐
│   Claude / AI   │────▶│   Swiss Energy MCP        │────▶│  SFOE / BFE Open Data    │
│   (MCP Host)    │◀────│   (MCP Server)            │◀────│                          │
└─────────────────┘     │                           │     │  GeoAdmin REST API       │
                        │  10 Tools                 │     │  (api3.geo.admin.ch)     │
                        │  Stdio | HTTP             │     │                          │
                        │                           │     │  opendata.swiss CKAN     │
                        │  server.py (FastMCP)      │     │  (opendata.swiss)        │
                        │  api_client.py            │     └──────────────────────────┘
                        │   LV95 conversion         │
                        │   GeoAdmin queries        │
                        └───────────────────────────┘

Infrastructure Components

Component Metaphor Function
api_client.py Switchboard Handles HTTP requests, coordinate conversion, error handling
LV95 converter Translator Converts WGS84 (lat/lon) to Swiss coordinate system
server.py Storefront Exposes all 10 tools via FastMCP

Project Structure

swiss-energy-mcp/
├── src/
│   └── swiss_energy_mcp/
│       ├── server.py          # FastMCP setup, lifespan, entry point
│       ├── settings.py        # Typed configuration (pydantic-settings)
│       ├── logging_config.py  # Structured JSON logging to stderr
│       ├── api_client.py      # HTTP client, egress guard, LV95 conversion
│       ├── models.py          # Pydantic input/output models
│       ├── formatting.py      # Markdown summary builders
│       ├── resources.py       # Layer-catalogue resource + prompt
│       └── tools/             # One module per tool group
│           ├── installations.py   # power, wind, hydro, PV, biogas
│           ├── places.py          # solar, Energiestadt, location profile
│           └── catalog.py         # dataset search, status
├── tests/
│   ├── test_unit.py         # Pure-unit tests (coords, formatting, egress)
│   ├── test_tools.py        # Tool tests with respx-mocked APIs
│   └── test_live.py         # Live integration tests (marked `live`)
├── docs/                    # roadmap.md, security.md
├── Dockerfile               # Multi-stage build, non-root user
├── pyproject.toml
├── CHANGELOG.md
├── CONTRIBUTING.md          # Contribution guide (English)
├── CONTRIBUTING.de.md       # Contribution guide (German)
├── SECURITY.md              # Security policy (English)
├── SECURITY.de.md           # Security policy (German)
├── LICENSE
├── README.md                # This file (English)
└── README.de.md             # German version

Known Limitations

  • GeoAdmin radius search: Maximum search radius depends on layer density; very large radii may return partial results
  • Solar potential: Layer ch.bfe.solarenergie-eignung-daecher covers building footprints — not all roof types are classified
  • Energiestadt: Only municipalities with active label are included; historical entries may be incomplete
  • opendata.swiss CKAN: Full-text search covers metadata only, not document contents

Testing

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

# Live integration tests (network access required)
PYTHONPATH=src pytest tests/ -m "live"

Changelog

See CHANGELOG.md


Contributing

See CONTRIBUTING.md (🇩🇪 Deutsch)


Security

See SECURITY.md (🇩🇪 Deutsch) for the security policy and posture summary, and docs/security.md for the full technical security model.


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-energy-mcp": {
      "command": "uvx",
      "args": [
        "swiss-energy-mcp"
      ]
    }
  }
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

swiss_energy_mcp-0.4.0.tar.gz (72.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

swiss_energy_mcp-0.4.0-py3-none-any.whl (33.8 kB view details)

Uploaded Python 3

File details

Details for the file swiss_energy_mcp-0.4.0.tar.gz.

File metadata

  • Download URL: swiss_energy_mcp-0.4.0.tar.gz
  • Upload date:
  • Size: 72.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for swiss_energy_mcp-0.4.0.tar.gz
Algorithm Hash digest
SHA256 b975a7a539c0760e30e2a446fef5cc8f2bb85a4e372bb214d83d58e1784dd142
MD5 1dc022b4655608a1c0161cf64b07c2fa
BLAKE2b-256 de3b832c69a717fd80b4d232b2a311e8de1fcdade1b7ffb2bd90864ccf8cb39e

See more details on using hashes here.

Provenance

The following attestation bundles were made for swiss_energy_mcp-0.4.0.tar.gz:

Publisher: publish.yml on malkreide/swiss-energy-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file swiss_energy_mcp-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for swiss_energy_mcp-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dedebd5143e91b2710a0ec19d221a60c548d8d0ccb570ccf367b7a115b1618b2
MD5 f4d8f26302d37f43abca105f375faf50
BLAKE2b-256 85347a0a5b20a233e76edba777fe35d7b6e8c44cfcf81582247e8c557a467e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for swiss_energy_mcp-0.4.0-py3-none-any.whl:

Publisher: publish.yml on malkreide/swiss-energy-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.4.1

2 files

This release

0.4.0 This release

2 files

0.3.3

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page