@pipeworx/iso-ne
MCP serverEverything elseReal-time power grid data for ISO New England, the electricity market and grid operator for…
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use @pipeworx/iso-ne
Install @pipeworx/iso-ne
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user pipeworx-iso-ne 'https://gateway.pipeworx.io/iso-ne/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://gateway.pipeworx.io/iso-ne/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-iso-ne&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vaXNvLW5lL21jcCJ9Open the link and Cursor adds the server at that address.
ChatGPT
https://gateway.pipeworx.io/iso-ne/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add pipeworx-iso-ne --url 'https://gateway.pipeworx.io/iso-ne/mcp'Run it once, then sign in with codex mcp login pipeworx-iso-ne if the server asks for an account.
From the project's README
As published by pipeworx-io/mcp-iso-ne in README.md.
ISO New England market data via ISO Express web services — five-minute LMPs, system load and generation fuel mix for the six New England states (CT, MA, ME, NH, RI, VT).
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
isone_lmp(location_id?, date?, limit?)— five-minute real-time LMP with energy, congestion and loss components. Omitdatefor the current interval.isone_load(date?, limit?)— five-minute total system load in MW.isone_fuel_mix(date?, limit?)— generation by fuel category (gas, nuclear, hydro, wind, solar, refuse, wood, coal, oil, landfill gas, imports) with the marginal-fuel flag.
Auth
BYO only today. HTTP Basic against webservices.iso-ne.com.
Platform fallback env var — not provisioned: PLATFORM_ISONE_KEY.
Registration is free at https://www.iso-ne.com/participate/applications-status-changes/ (an "ISO Express / Web Services" account), but ISO-NE approves the account before the credentials work. A brand-new registration is refused exactly like a wrong password, so the pack's 401 message names the approval step rather than implying the password is wrong.
_apiKey accepts either spelling:
"username:password"— plain; the pack base64-encodes it.base64("username:password")— pre-encoded, same convention asseo-serp.
Anything else fails locally with a clear message instead of becoming a bare upstream 401 that looks like an outage.
One env var, not PLATFORM_ISONE_USER + PLATFORM_ISONE_PASS: the gateway
injects exactly one secret per pack, into _apiKey. So the stored credential is
the single string the Basic scheme actually needs. The pack is marked
byoExpected: true in workers/gateway/src/pack-manifest.json so the vendor-key
ratchet does not fail the deploy; drop it the day the credential lands.
Data sources
- https://webservices.iso-ne.com/api/v1.1/ — the authenticated API.
/fiveminutelmp/current,/fiveminutesystemload/current,/genfuelmix/current, and/…/day/YYYYMMDDfor a historical day. - https://www.iso-ne.com/isoexpress/ — the public browser UI over the same data.
Traps
- There is no keyless fallback. This was checked, not assumed. Probed
2026-09-17, all refused:
webservices.iso-ne.com/api/v1.1/fiveminutesystemload/current→ 401www.iso-ne.com/ws/wsclient→ 500 (for every parameter shape tried)www.iso-ne.com/transform/csv/genfuelmix?start=…→ 403, and it stays 403 with a browser User-Agent and an isoexpressReferer. Note it is a 403 and not a 404, so the path exists — it is session-gated, not merely UA-gated (cf.reference_gov_site_ua_blocks, where a UA swap is usually the fix).
- Response shapes here are UNVERIFIED. Holding no account, no ISO-NE response
body in this pack has been observed live. ISO-NE wraps results in a
singular/plural pair —
{"FiveMinLmps": {"FiveMinLmp": [...]}}— and the pack unwraps that generically (descend to the first array-valued property) and returns rows as published, without remapping field names. Theenvelopefield in every response reports which keys it actually walked, so the first real call with a credential tells you the true shape rather than hiding it. Tighten once credentials exist. - Same-day requests can legitimately be empty. ISO-NE publishes each day's reports after the fact. The pack treats a 0-row success as an error and says to try the previous day, rather than returning an empty array as a clean answer.
- ISO-NE does not use a
.jsonsuffix consistently across its docs; this pack appends.jsonto every path, which is the form the v1.1 API accepts.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"iso-ne": {
"url": "https://gateway.pipeworx.io/iso-ne/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/iso-ne/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1679+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/isone_lmp \
-H 'Content-Type: application/json' \
-d '{"limit":100}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/isone_lmp. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"iso-ne": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-iso-ne"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-iso-ne
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Iso Ne data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- iso-ne MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-pipeworx-io-iso-ne- Source
- github.com/pipeworx-io/mcp-iso-ne
- Hosted endpoint
https://gateway.pipeworx.io/iso-ne/mcp