GridPulse Energy

GridPulse Energy

MCP server for real-time electricity prices, carbon intensity, and energy analytics across 41+ zones in Europe, Great Britain, the United States, and Australia. Query live prices, compare zones, check gas storage levels, get green scores, find optimal charging windows, and access advanced analytics. Free Basic tier requires no API key. Install via npx gridpulse-mcp or connect directly via Streamab

Category
Visit Server

README

GridPulse β€” Electricity Price API

The electricity price API for developers and AI agents. Real-time and historical wholesale electricity prices, carbon intensity, generation mix, gas storage, weather, and analytics for 41+ bidding zones across Europe, Great Britain, the United States, and Australia β€” plus monthly carbon intensity for 70+ countries worldwide.

API Status npm License: MIT


πŸ”‘ Get an API Key

Basic tier is free β€” no API key needed for 500 requests/month.

πŸ‘‰ Get your API key on RapidAPI

Plan Price Requests/month Rate Limit
Basic Free 500 1 req/sec
Pro $29/mo 10,000 10 req/sec
Ultra $99/mo 60,000 25 req/sec
Mega $299/mo 250,000 50 req/sec

🌐 Links


πŸ€– MCP Support for AI Agents

GridPulse is MCP-native. Connect Claude Desktop, Cursor, VS Code, Claude Code, or any AI agent in seconds.

Quick Start (no API key needed)

npx gridpulse-mcp

Claude Desktop

No API key needed for Basic tier:

{
  "mcpServers": {
    "gridpulse": {
      "command": "npx",
      "args": ["-y", "gridpulse-mcp"]
    }
  }
}

With API key (get one here):

{
  "mcpServers": {
    "gridpulse": {
      "command": "npx",
      "args": ["-y", "gridpulse-mcp"],
      "env": {
        "GRIDPULSE_API_KEY": "your_key_here"
      }
    }
  }
}

Or connect directly via Streamable HTTP:

{
  "mcpServers": {
    "gridpulse": {
      "url": "https://api.gridpulse.network/mcp",
      "headers": {
        "X-API-Key": "your_key_here"
      }
    }
  }
}

Claude Code

claude mcp add gridpulse --command "npx" --args "-y,gridpulse-mcp"

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "gridpulse": {
      "command": "npx",
      "args": ["-y", "gridpulse-mcp"],
      "env": {
        "GRIDPULSE_API_KEY": "your_key_here"
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "gridpulse": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "gridpulse-mcp"],
      "env": {
        "GRIDPULSE_API_KEY": "your_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "gridpulse": {
      "command": "npx",
      "args": ["-y", "gridpulse-mcp"],
      "env": {
        "GRIDPULSE_API_KEY": "your_key_here"
      }
    }
  }
}

Ask your AI assistant

  • "What is the current electricity price in Germany?"
  • "Which European country has the cheapest electricity right now?"
  • "Find the cheapest 4-hour window to charge my EV in Norway before 7am"
  • "Compare the carbon intensity of Germany, France, and Norway"
  • "What is Germany's gas storage level and what does it mean for prices?"
  • "Find the greenest grid in Europe to run my batch job tonight"
  • "What's the GB electricity market doing β€” is the system long or short?"
  • "Schedule my workload across DE, FR, and NO β€” find the cheapest and greenest window before midnight"

Available MCP Tools (16)

Tool Description Plan
get_current_price Latest spot price for any zone Basic
get_day_ahead_prices Full hourly day-ahead price curve Basic
get_carbon_intensity Real-time carbon intensity (gCOβ‚‚/kWh) Basic
get_green_score 0-100 green score combining renewables and carbon Basic
get_supported_zones List all 41+ supported zone codes Basic
compare_prices Compare prices across up to 10 zones Basic
compare_carbon Compare carbon intensity across up to 10 zones Basic
compare_green Compare green scores across up to 10 zones Basic
get_gas_storage EU gas storage level and price risk signal Basic
get_global_carbon Monthly carbon intensity for 70+ countries Basic
get_gb_market GB day-ahead vs system price spread Basic
get_weather Wind, solar, temperature for any zone Basic
get_cheapest_window Cheapest N contiguous hours before deadline Pro
get_price_history Historical prices between two dates Pro
get_optimal_schedule Multi-zone ranking by price, carbon, or balanced Pro

⚑ Quick Start (REST API)

No API key needed for Basic tier:

# Current electricity price in Germany
curl "https://api.gridpulse.network/v1/prices/current?zone=DE"

# Carbon intensity in Great Britain
curl "https://api.gridpulse.network/v1/carbon/current?zone=GB"

# Compare prices across Europe β€” ranked cheapest first
curl "https://api.gridpulse.network/v1/compare/prices?zones=DE,FR,NO,SE,DK,AT,NL,BE,ES"

# Gas storage in Germany
curl "https://api.gridpulse.network/v1/fuels/gas-storage?country=DE"

# Carbon intensity for Japan (global coverage)
curl "https://api.gridpulse.network/v1/carbon/global?country=JP"

# GB market β€” day-ahead vs system price spread
curl "https://api.gridpulse.network/v1/prices/gb-market"

# Green score comparison across regions
curl "https://api.gridpulse.network/v1/compare/green?zones=DE,FR,NO,GB,CAISO"

With API key (Pro+):

# Price history
curl "https://api.gridpulse.network/v1/prices/history?zone=DE&from=2025-01-01&to=2025-01-31" \
  -H "X-API-Key: your_key_here"

# Generation mix
curl "https://api.gridpulse.network/v1/generation/current?zone=DE" \
  -H "X-API-Key: your_key_here"

# Price volatility analytics
curl "https://api.gridpulse.network/v1/analytics/volatility?zone=DE&days=30" \
  -H "X-API-Key: your_key_here"

πŸ“‘ Live Coverage

Region Zones Update Frequency
Europe DE, AT, FR, NL, BE, ES, NO, SE, DK + 16 more Every 15-30 min
Great Britain GB β€” day-ahead + system prices + interconnectors + wind forecast Every 30 min
United States CAISO, ERCOT, NYISO, PJM, SPP, MISO, ISONE Every 5 min
Australia AU-NSW, AU-QLD, AU-VIC, AU-SA, AU-TAS Every 5 min
Global Carbon 70+ countries worldwide Monthly

πŸ“‹ Endpoints (48 total)

🟒 Basic β€” Free

Endpoint Description
GET /v1/prices/current Latest spot price for any zone
GET /v1/prices/day-ahead Next 24-48h prices
GET /v1/prices/gb-market GB day-ahead vs system price spread
GET /v1/compare/prices Compare prices across up to 10 zones
GET /v1/compare/carbon Compare carbon intensity across up to 10 zones
GET /v1/compare/green Compare green scores across up to 10 zones
GET /v1/carbon/current Real-time carbon intensity (gCOβ‚‚/kWh)
GET /v1/carbon/forecast 48h carbon forecast (GB)
GET /v1/carbon/global Monthly carbon for 70+ countries
GET /v1/green/score 0-100 cleanliness score
GET /v1/fuels/gas-storage EU gas storage levels
GET /v1/fuels/gas-storage/history Historical gas storage
GET /v1/fuels/lng LNG terminal data
GET /v1/fuels/summary EU-wide gas market summary
GET /v1/fuels/henry-hub Henry Hub gas prices
GET /v1/fuels/carbon-price EU ETS carbon allowance prices
GET /v1/weather/current Wind, solar, temperature
GET /v1/weather/forecast 48h weather forecast
GET /v1/zones All supported zone codes
GET /v1/stats Database statistics
GET /v1/plans Plan details and limits

πŸ”΅ Pro β€” $29/month

Everything in Basic, plus:

Endpoint Description
GET /v1/prices/history Full price history with date range
GET /v1/prices/cheapest Cheapest N-hour window finder
GET /v1/prices/consumer Consumer retail prices DE/AT
GET /v1/generation/current Generation mix by fuel type
GET /v1/generation/forecast Wind and demand forecast
GET /v1/fuels/henry-hub/history Full Henry Hub history
GET /v1/fuels/carbon-price/history Full EUA carbon price history
GET /v1/fuels/retail-prices US retail prices by state
POST /v1/webhooks Create price/carbon alert
GET /v1/webhooks List your webhooks
DELETE /v1/webhooks/:id Delete a webhook

🟣 Ultra β€” $99/month

Everything in Pro, plus:

Endpoint Description
GET /v1/analytics/volatility Price volatility metrics
GET /v1/analytics/negative-prices Historical negative price events
GET /v1/analytics/negative-risk Negative price probability score (0-100)
GET /v1/analytics/correlation Zone price correlation
GET /v1/analytics/peak-hours Peak demand patterns
GET /v1/analytics/grid-stress Grid stress indicator
GET /v1/analytics/carbon-optimal Optimal low-carbon scheduling windows
GET /v1/fuels/winter-readiness Winter gas risk score
GET /v1/fuels/gas-power-correlation Gas/power price correlation
GET /v1/fuels/lng-dependency LNG import dependency score

⚫ Mega β€” $299/month

Everything in Ultra, plus:

Endpoint Description
GET /v1/analytics/hydro Hydro reservoir analytics for NO, CH, AT, SE, FI

πŸ§ͺ Testing

# Run all tests
npm test

# Run API endpoint audit (71 tests)
npm run audit --workspace=@gridpulse/api

# Run specific workspace tests
npm test --workspace=@gridpulse/api

πŸ“¦ MCP Package

The apps/mcp-package/ directory contains the standalone npm MCP server published as gridpulse-mcp.

# Run without installing
npx gridpulse-mcp

# Install globally
npm install -g gridpulse-mcp

# With API key
GRIDPULSE_API_KEY=your_key npx gridpulse-mcp

Published at: npmjs.com/package/gridpulse-mcp


πŸ—ΊοΈ Roadmap

  • [ ] Japan (JEPX) β€” 9 regional zones + national system price in JPY
  • [ ] Price forecasting β€” 24-72h XGBoost model for DE, GB, NO
  • [ ] Direct API key registration on gridpulse.network
  • [ ] Python SDK
  • [ ] JavaScript/TypeScript SDK
  • [ ] Expanded US zone coverage

πŸ“„ License

MIT β€” see LICENSE


πŸ“§ Support

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured