@pipeworx/pjm
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@pipeworx/pjmWhat's the PJM load forecast for the next 7 days?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/pjm
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.
Related MCP server: aemo-mcp
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
https://dataminer2.pjm.com/ — the browser UI over the same feeds.
https://api.pjm.com/api/v1/ — the API. Documented envelope:
{ "totalRows": N, "items": [...], "links": [...] }.
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 returnsitemsas 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.comanswers 401 with an empty body and noWWW-Authenticateheader, 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=jsonis 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-pjmIt 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
This server cannot be deployed
Maintenance
Related MCP Connectors
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Live US power market prices, load, generation, weather and permits for AI agents.
GridStatus MCP — wraps the GridStatus.io REST API (api.gridstatus.io/v1)
Browse and query the EIA API v2 — electricity, petroleum, natural gas, coal, forecasts via MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides AI models with real-time data about New England's power grid through a Model Context Protocol interface, enabling questions about current power generation, fuel mix, and marginal fuels.1MIT
- AlicenseAqualityBmaintenanceOne-call Australian energy-market plumbing via AEMO — cited, structured responses for market data and analysis, not a data broker.5140 PyPIMIT
- AlicenseBqualityAmaintenanceProvides real-time European and GB electricity grid data via MCP, including generation, prices, carbon intensity, and grid infrastructure.4421 npm6MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying US electric grid time-series data – LMP prices, load, fuel mix – across ISOs via tools to list datasets, fetch historical windows, and get latest values.MIT