streamable-httpMITupdated 10d ago
Model Context Protocol server for Voltcast: day-ahead electricity prices for 47 European bidding zones (15-minute native resolution, history to 2015), probabilistic price forecasts whose accuracy is published daily at voltcast.com/accuracy, carbon intensity, and cheapest-window optimization.
What can you do with voltcast?
Voltcast MCP Server — European electricity prices, forecasts & carbon
Model Context Protocol server for Voltcast: day-ahead electricity prices for 47 European bidding zones (15-minute native resolution, history to 2015), probabilistic price forecasts whose accuracy is published daily at voltcast.com/accuracy, carbon intensity, and cheapest-window optimization.
Two ways to run it:
1. Hosted endpoint (recommended)
https://voltcast.com/api/mcp
Streamable HTTP transport, protocol 2025-06-18. Server card:
/.well-known/mcp.json.
2. Local stdio server (this repo)
VOLTCAST_API_KEY=your_key npx voltcast-mcp
Or with Docker:
docker build -t voltcast-mcp .
docker run -i -e VOLTCAST_API_KEY=your_key voltcast-mcp
The stdio server is a thin proxy onto the same REST API — identical tools,
auth and rate limits. It starts and answers introspection without a key;
list_zones works keyless too.
{
"mcpServers": {
"voltcast": {
"command": "npx",
"args": ["voltcast-mcp"],
"env": { "VOLTCAST_API_KEY": "YOUR_API_KEY" }
}
}
}
Tools
| Tool | Auth | What it does |
|---|---|---|
list_zones |
none | The zone registry (codes, names, currencies) |
get_prices |
key | Day-ahead prices for a zone/date at native market intervals |
get_forecast |
key | P50 on Home/Starter and P10/P90 on Pro+ |
get_carbon |
key | Carbon intensity + green score from the live generation mix |
get_renewables |
key | Wind/solar forecasts (TSO + Voltcast model) vs realized |
cheapest_window |
Pro+ key | Cheapest contiguous window for a load in the next 48h |
Auth
Authorization: Bearer <api key>. New accounts start with
Home
at €9/month after a 7-day card-required trial; existing Free accounts remain
grandfathered. list_zones works without a key. The exact hosted-connector
walkthrough is at
voltcast.com/ai/local-electricity-price.
Client config
{
"mcpServers": {
"voltcast": {
"url": "https://voltcast.com/api/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}
Honesty, stated plainly
Every forecast the server returns is benchmarked daily against a naive baseline in public — losses included. Zones where the model loses are free to use under the guarantee. Data sources: ENTSO-E Transparency Platform, SMARD.de (CC BY 4.0), attributed in every response.
Install
Add voltcast to your client. Pick the one you use.
claude mcp add --transport http voltcast https://voltcast.com/api/mcpcodex mcp add voltcast --url https://voltcast.com/api/mcp{
"mcpServers": {
"voltcast": {
"url": "https://voltcast.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"voltcast": {
"type": "http",
"url": "https://voltcast.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"voltcast": {
"url": "https://voltcast.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"voltcast": {
"serverUrl": "https://voltcast.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
6 tools
voltcast exposes 6 tools to a connected agent.
- list_zones
- none
- get_prices
- key
- get_forecast
- key
- get_carbon
- key
- get_renewables
- key
- cheapest_window
- Pro+ key
Score
75 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 2 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 16, 2026 |