Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
ENERGY_MCP_DBNoPath to an alternative SQLite database file. If not set, the server uses the bundled data file.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_regionsA

List the balancing authorities available, with row counts and the date range of demand data for each. Call this first to see what you can query.

query_demandA

Return hourly electricity demand (MWh) for one region over a date range.

Args:
    region: Balancing authority code (e.g. ERCO, CISO, PJM, NYIS).
    start: Inclusive start date, 'YYYY-MM-DD'.
    end: Inclusive end date, 'YYYY-MM-DD'.
    limit: Max rows to return (default 168 = one week of hours).

Returns hourly rows ordered by time. For long ranges prefer daily_demand.
daily_demandA

Return daily demand statistics (average, peak, minimum MWh) for one region over a date range. Use this instead of query_demand for ranges longer than a few days.

Args:
    region: Balancing authority code.
    start: Inclusive start date, 'YYYY-MM-DD'.
    end: Inclusive end date, 'YYYY-MM-DD'.
peak_demandA

Find the single highest-demand hour for one region over a date range, returning the timestamp and the demand in MWh.

Args:
    region: Balancing authority code.
    start: Inclusive start date, 'YYYY-MM-DD'.
    end: Inclusive end date, 'YYYY-MM-DD'.
compare_regionsA

Compare average and peak demand across regions over the same date range. Useful for questions like "which grid was busiest last summer?".

Args:
    start: Inclusive start date, 'YYYY-MM-DD'.
    end: Inclusive end date, 'YYYY-MM-DD'.
    regions: Optional subset of region codes. Defaults to all regions.
demand_vs_weatherA

Join daily average demand against daily temperature for a region, using the NOAA weather station nearest that region's main load zone. Reveals the demand-temperature relationship (heating and cooling load).

Args:
    region: Balancing authority code.
    start: Inclusive start date, 'YYYY-MM-DD'.
    end: Inclusive end date, 'YYYY-MM-DD'.

Returns one row per day: average demand (MWh) and that day's max/min temp (C).

Prompts

Interactive templates invoked by user choice

NameDescription
analyze_demandA starter prompt for analyzing a region's demand using these tools.

Resources

Contextual data attached and managed by the client

NameDescription
schema_resourceHuman-readable description of the tables behind these tools.
coverage_resourceWhat data is actually loaded right now (regions, row counts, date range).

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/visethchapman/energy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server