@pipeworx/pjm

MCP serverEverything else

Real-time electricity market data from PJM Interconnection, the largest US grid operator (13…

Available today. Use it from your connected AI after setup.

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/pjm

Install @pipeworx/pjm

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-pjm 'https://gateway.pipeworx.io/pjm/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/pjm/mcp

    Add a custom connector in Settings, paste this address, and approve the sign-in.

  • Cursor

    cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-pjm&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vcGptL21jcCJ9

    Open the link and Cursor adds the server at that address.

  • ChatGPT

    https://gateway.pipeworx.io/pjm/mcp

    In 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-pjm --url 'https://gateway.pipeworx.io/pjm/mcp'

    Run it once, then sign in with codex mcp login pipeworx-pjm if the server asks for an account.

From the project's README

As published by pipeworx-io/mcp-pjm in README.md.

PJM Interconnection market data via Data Miner 2 — real-time LMPs, generation by fuel type and the seven-day load forecast for the largest US grid operator (13 states + DC, ~65 million people, Illinois to New Jersey).

Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.

Tools

  • pjm_feeds(feed?, row_count?, start_row?) — list the Data Miner 2 feed catalog, or fetch ANY feed by exact name (da_hrl_lmps, inst_load, …). The escape hatch for the hundreds of PJM feeds without a dedicated tool here.
  • pjm_lmp_realtime(pnode_id?, pnode_name?, datetime_beginning_ept?, row_count?) — five-minute real-time LMP with congestion and loss components.
  • pjm_load_forecast(forecast_area?, row_count?) — seven-day hourly load forecast by transmission zone and RTO total.
  • pjm_generation_fuel_mix(fuel_type?, datetime_beginning_ept?, row_count?) — MW and percentage of total by fuel type.

Auth

BYO only today. Ocp-Apim-Subscription-Key header (Azure API Management). Platform fallback env var — not provisioned: PLATFORM_PJM_KEY.

A key is free but requires registering an account at https://apiportal.pjm.com/ and subscribing that account to the Data Miner 2 product. Those are two steps: a registered key that is not subscribed to the feed is refused identically to no key at all, which is why the pack's 401 message names the subscription explicitly rather than just saying "bad key".

Until the key lands, every tool refuses with a message containing requires an API key, and the pack is marked byoExpected: true in workers/gateway/src/pack-manifest.json so the vendor-key ratchet does not fail the deploy. Drop byoExpected the day PLATFORM_PJM_KEY is provisioned.

Data sources

Traps

  • Response shapes here are UNVERIFIED. Holding no key, no PJM response body in this pack has been observed live. The pack normalizes the documented {totalRows, items, links} envelope and returns items as published, without renaming or reshaping individual fields. That is deliberate: a field mapping invented from documentation we could not exercise is a silent-wrong- answer waiting to happen, and returning upstream rows untouched is honest about what we actually know. Tighten this once a key exists and the real payload can be read.
  • A 401 here tells you almost nothing. Verified 2026-09-17: api.pjm.com answers 401 with an empty body and no WWW-Authenticate header, both with no key and with a syntactically valid but unregistered one. So 401 cannot distinguish "no key" from "wrong key" from "key not subscribed to this feed". The pack says so in the error rather than guessing at a cause.
  • format=json is not the default — Data Miner 2 defaults to another representation. This pack always sets it.
  • Times are Eastern Prevailing Time (EPT — shifts with DST), and the range filter uses Data Miner's own "M/D/YYYY HH:MM to M/D/YYYY HH:MM" syntax, not ISO-8601.
  • A 200 with 0 rows is treated as an error, not an empty success: it almost always means the date filter fell outside the feed's published range.

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "pjm": {
      "url": "https://gateway.pipeworx.io/pjm/mcp"
    }
  }
}

What this endpoint actually serves

tools/list at https://gateway.pipeworx.io/pjm/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/pjm_feeds \
  -H 'Content-Type: application/json' \
  -d '{"row_count":50}'

No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/pjm_feeds. 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": {
    "pjm": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-pjm"]
    }
  }
}

Or run it directly to confirm it starts:

npx -y @pipeworx/mcp-pjm

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 Pjm data" })

The gateway picks the right tool and fills the arguments automatically.

More

License

MIT

Advanced
Delivery
pjm MCP server → your ahel connector (mcp.ahel.ai) → your AI.
Catalog kind
mcp-server
Key
io-github-pipeworx-io-pjm
Source
github.com/pipeworx-io/mcp-pjm
Hosted endpoint
https://gateway.pipeworx.io/pjm/mcp