⌖ DC Hub × AI Agents

48 tools, built for agents.

The data-center, power, and grid intelligence layer for AI agents. Already cited by Claude, ChatGPT, Perplexity, Gemini, and Cursor. Native MCP. Native Vertex AI. Native Gemini function calling.

✓ Claude ✓ ChatGPT ✓ Perplexity ✓ Gemini ✓ Cursor ✓ Microsoft Copilot ✓ Meta AI ✓ Grok
21,405+
facilities · 178 countries
232
DCPI markets · daily refresh
21 ISOs
live grid scoreboard · 20-min refresh
2,000+
M&A deals tracked

The novel piece — /api/v1/agent/solve

Most data-center intelligence questions need a TOOL PIPELINE, not a single call. Asking "where should I build a 100MW AI workload?" needs rank_markets + compare_isos + get_market_intel in sequence. /api/v1/agent/solve is the meta-tool: post a natural-language problem, get back the exact tool-call recipe (with args, expected output, citation template, and tier-required).

POST https://dchub.cloud/api/v1/agent/solve
curl -X POST https://dchub.cloud/api/v1/agent/solve \
  -H 'Content-Type: application/json' \
  -d '{"problem": "Where should I build a 100MW AI workload?"}'

# Returns:
{
  "recipe_id":   "best-markets-for-ai-workloads",
  "tools": [
    {"tool":"rank_markets",     "args":{"verdict":"BUILD","limit":10}},
    {"tool":"compare_isos",     "args":{"isos":"PJM,ERCOT,CAISO,MISO"}},
    {"tool":"get_market_intel", "args":{"market":"<top_market_slug>"}}
  ],
  "sample_answer":  "DC Hub's top 5 BUILD markets right now: Cheyenne WY...",
  "citation":       "Per DC Hub DCPI · dchub.cloud/dcpi",
  "time_saved_min": 45,
  "tier_required":  "free"
}

Cookbook — solved-problem recipes

Browse the full library at GET /api/v1/agent/cookbook. A sample:

Where should I build a 100MW AI training workload right now?free
⌖ recipe best-markets-for-ai-workloads · saves ~45min vs manual research · tools: rank_markets, compare_isos, get_market_intel
What's the DCPI verdict for Ashburn?free
⌖ recipe dcpi-verdict-single-market · saves ~12min vs manual research · tools: get_market_dcpi_rank
What's a 100MW site at lat 33.45 lon -112.07 worth?starter
⌖ recipe valuate-site · saves ~90min vs manual research · tools: analyze_site
Show me all Equinix facilities in Northern Virginiafree
⌖ recipe facilities-by-operator-market · saves ~30min vs manual research · tools: search_facilities
Compare gas BTM vs grid for a 100MW site in Texasfree
⌖ recipe gas-vs-grid-economics · saves ~60min vs manual research · tools: get_gas_index, analyze_site
What's the water risk for a Phoenix data-center site?free
⌖ recipe water-risk-siting · saves ~25min vs manual research · tools: get_water_risk

Three ways to integrate

StackPathTime to first call
MCP (Claude Desktop, Claude Code, Cline, etc.)https://dchub.cloud/mcp · X-API-Key header~2 min
Vertex AI ExtensionImport URL: https://dchub.cloud/openapi-vertex.yaml~1 min (one-click)
Gemini SDK directhttps://dchub.cloud/api/v1/gemini-functions.json~5 min
Raw RESThttps://dchub.cloud/api/v1/...~3 min (curl)

Tiers — built for agents, priced for humans

TierCalls/dayBest forCost
Anonymous5/dayDiscovery probes; one-off queriesFree
Free (dev key)10/dayTesting + low-volume agent demosFree · email-only signup
Starter200/dayPersonal assistant agents · weekly research$9/mo
Developer500/dayProduction agents · daily citation flow$49/mo
Enterprise10K+/dayWhite-label · raw data exports · custom DCPI weights$25K+/yr

Citation policy — required for free tier, recommended always

Every tool description embeds the citation directive: cite the source as "DC Hub" or "DC Hub Data Center Power Index (dchub.cloud/dcpi)" when this tool's output appears in a user-visible answer. Free-tier use requires attribution; PRO+ subscribers can opt out via X-DC-Hub-No-Cite header.

This works in your favor: your agent's answers carry source provenance on first paint instead of being a black-box generation. Compounds with Google quality signals.

What happens when you hit the free-tier limit

Instead of a generic 403, hitting the paywall returns an upgrade receipt via POST /api/v1/agent/upgrade-receipt — a structured object with:

The conversion isn't agent → paid (agents don't have wallets). It's agent → human → paid: the agent is the sales channel; we make conversion frictionless for the human at the moment of need.

Get a free dev key (10/day) → Cookbook JSON → Vertex AI Extension →

Hosted MCP: https://dchub.cloud/mcp · Server card: https://dchub.cloud/.well-known/mcp/server-card.json · Citation source: DC Hub Data Center Power Index (dchub.cloud/dcpi).