# eia-mcp-gridsense

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/pranavbhosale25/eia-mcp-gridsense  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/eia-mcp-gridsense

## Description
MCP server for US electricity grid data: fuel mix, demand, retail prices, CO2 emissions

## Claude Desktop Quick Installation
Heuristic fallback — verify the package name and runner against the repository README before running it. Uses `npx` (confidence: low):

```json
"mcpServers": {
  "eia-mcp-gridsense": {
    "command": "npx",
    "args": ["-y","eia-mcp-gridsense"]
  }
}
```

## Documentation & README

# eia-mcp-gridsense

An MCP server exposing US electricity grid data from the [EIA API](https://www.eia.gov/opendata/):

- `get_fuel_mix` — hourly generation by fuel source for a grid region
- `get_electricity_demand` — hourly demand for a grid region
- `get_wholesale_prices` — monthly retail price proxy for a state
- `get_co2_emissions` — annual CO2 emissions by state, electric power sector

## Setup

Requires an EIA API key: https://www.eia.gov/opendata/register.php

Set it as an environment variable (or in a local `.env` file, never committed):

```
EIA_API_KEY=your-key-here
```

## Usage with Claude Desktop

```json
{
  "mcpServers": {
    "eia-mcp-gridsense": {
      "command": "uvx",
      "args": ["eia-mcp-gridsense"],
      "env": {
        "EIA_API_KEY": "your-key-here"
      }
    }
  }
}
```

<!-- mcp-name: io.github.pranavbhosale25/eia-mcp-gridsense -->

