CONNECT

Point your agent at the buildout.

exascale.build is live and open — no API key required right now (fair-use rate limits apply). Connect over MCP, or call the REST API directly. Every value comes back cited to its source.

The endpoints

MCP https://api.exascale.build/mcp
REST https://api.exascale.build/v1

Add to Claude

Claude Code — one command:

claude mcp add --transport http exascale https://api.exascale.build/mcp

claude.ai / Claude Desktop — Settings → Connectors → Add custom connector → paste https://api.exascale.build/mcp → no authentication.

Add to Perplexity Pro / Max / Enterprise

Settings → ConnectorsCustom connectorRemote → URL https://api.exascale.build/mcp → Authentication: Open → Add.

Or call REST directly

# discover what's available
curl https://api.exascale.build/v1/capabilities

# top 5 states by operating power capacity, cited
curl -X POST https://api.exascale.build/v1/power/capacity/query \
  -H 'content-type: application/json' \
  -d '{"group_by":["state"],"order_by":"nameplate_mw","top_n":5}'

# prove any returned value back to its raw source cell
curl -X POST https://api.exascale.build/v1/evidence/source-row \
  -H 'content-type: application/json' -d '{ ...the row's verify handle... }'

What you get

Read the full API docs →