Developer API & MCP

Energy data, accessible by HTTP or AI agent.

One REST API, 34 MCP tools, one key. Used by funds, BD teams, OEM strategy units, and AI agents to query U.S. project pipelines, FEOC compliance, and developer scoring.

REST
MCP
Python
$ curl -H "X-API-Key: $KEY" \
https://api.prospectorlabs.io/projects?
iso=ERCOT&construction_stage=late

{ "data": [{
  "name": "Harald (BearKat Wind B)",
  "capacity_mw": 162.1,
  "construction_stage": "late",
  "developer": "CIP",
  "state": "TX"
}] }
—
Queue projects
5.6M
DG installations
6,593
Developer profiles
25,000+
FEOC entities
—
REST endpoints

One key. Every product.

Every dataset on the platform is queryable via REST or MCP, returned in the same enriched schema as the dashboard. Cross-product joins are pre-computed — no client-side stitching.

/projects

Interconnection projects

Interconnection queue projects with construction stage, capacity, technology, credit eligibility, and developer joins. Defaults to the ISO transmission queue; add population=all for distribution and DG-program rows.

GET /projects?iso=ERCOT&construction_stage=late
GET /projects/A01?region=PJM
/dg

DG installations

Distributed generation installations from state programs, EIA filings, and county permit offices, with an investability screen.

GET /dg/investable?state=NJ
GET /dg/projects?state=TX
/developers

Developers

Developer profiles with completion rates, tier scoring, portfolio composition, and capital posture.

GET /developers/search?q=nextera
GET /developers?tier=A
/datacenters

Data centers

Facilities with operator, market, capacity, and grid-impact analysis, cross-referenced against the interconnection queue.

GET /datacenters/summary
GET /datacenters/pipeline?state=VA
/tax-credits

ITC / PTC stacking

Base ITC and PTC with energy community, low-income, and domestic content overlays. Updated to Treasury guidance.

GET /tax-credits/calculate?technology=solar
&capacity_mw=5&state=NJ
/lmp

Market data

Locational marginal prices and capacity auction results by ISO and zone.

GET /lmp/daily?iso=ERCOT
GET /capacity/prices?iso=PJM

Pick your transport.

REST for your code or model. MCP for any AI agent. Python for fast scripting.

Tax credit in 1 call cURL
# Stack ITC/PTC bonuses for a project curl -H "X-API-Key: $KEY" \ "https://api.prospectorlabs.io/tax-credits/calculate?technology=solar&capacity_mw=5&state=NJ" # Response { "data": { "recommended_credit": "ptc", "effective_itc_rate": 0.3, "max_itc_rate": 0.7 } }
MCP for Claude / Cursor MCP
# Install pip install prospector-energy-mcp # claude_desktop_config.json { "mcpServers": { "prospector": { "command": "prospector-mcp", "env": { "PROSPECTOR_API_KEY": "..." } } } }
Find late-stage projects Python
# Python requests import requests r = requests.get( "https://api.prospectorlabs.io/projects", headers={"X-API-Key": KEY}, params={ "iso": "ERCOT", "construction_stage": "late", "capacity_min": "100", } ) for p in r.json()["data"]: print(p["name"], p["developer"])
MCP — Model Context Protocol

Built for AI agents, not just humans.

Drop our MCP server into Claude Desktop, Cursor, or any MCP-compatible client. Your agent gets first-class access to 34 tools — query projects, screen suppliers, score developers, calculate tax credits — without you writing a single API integration.

Same key as REST. Same data, same enrichment, same refresh cadence.

# 1. Install
pip install prospector-energy-mcp

# 2. Add to your MCP client
prospector-mcp --key $PROSPECTOR_API_KEY

# 3. Ask your agent
> Find late-stage solar projects
> in ERCOT under 100 MW with
> clear FEOC supply chains.

Live in 60 seconds.

No demo, no sales call. Register, get a key, query the first endpoint.

01

Register

Free tier — no credit card, no password. Name and email.

api.prospectorlabs.io/register
02

Get your key

Issued immediately on the same page. Usage tracked per key.

api.prospectorlabs.io/start
03

Query an endpoint

REST, MCP, or Python — pick what fits your stack.

GET /projects
04

Upgrade when you scale

Paid plans add the full daily queue and bulk CSV export.

See pricing →

Pricing.

Free tier is for evaluation. Paid plans add the full daily queue and bulk export.

See full pricing →