MCP Server v1.0.0 · 11 Tools Live · Official MCP Registry

Data center intelligence
for AI agents.

Connect your agent to 21,000+ facilities, M&A transactions, live grid data, and real-time market intelligence across 170+ countries. MCP native. REST API included.

20K+
Facilities
140+
Countries
2,000+ deals
Deals Tracked
21+ GW
Pipeline
11
MCP Tools
🔑 Get Developer Key — $49/mo 📋 Quick Start ⚡ MCP Server 📋 OpenAPI Spec
⚡ MCP Tools 🚀 Quick Start 💰 Pricing 🔍 Discovery ❓ FAQ
11 MCP Tools

Everything Your Agent Needs

Comprehensive data center intelligence — from facility search to site analysis to live grid data. One MCP connection.

🔍search_facilities
REST: /api/v1/facilitiesMCP: search_facilities
Query 21,000+ facilities by location, operator, capacity, or free-text. Filter by country, state, city, tier level.
Free (5 results)
🏢get_facility
REST: /api/v1/facilities/:idMCP: get_facility
Full specs: power capacity, PUE, floor space, connectivity (carriers, IX, cloud on-ramps), certifications.
Free
📊get_market_intel
REST: /api/v1/marketsMCP: get_market_intel
Supply/demand, pricing, vacancy, absorption, pipeline data for any major DC market worldwide.
Free (limited)
💰list_transactions
REST: /api/v1/dealsMCP: list_transactions
2,000+ M&A deals. Filter by buyer, seller, deal value, type, date, and region.
Free (limited)
📰get_news
REST: /api/news/liveMCP: get_news
Curated news from 40+ sources with AI categorization and relevance scoring. 13,900+ articles.
Free (limited)
🏗️get_pipeline
REST: /api/v1/pipelineMCP: get_pipeline
21+ GW construction pipeline. Planned, under construction, completed. Filter by status, country, operator.
Free (limited)
📈get_intelligence_index
REST: /api/v1/intelligenceMCP: get_intelligence_index
Exclusive composite market health score — real-time pulse of the global data center industry.
Free (score only)
🤖get_agent_registry
REST: /api/agent/registryMCP: get_agent_registry
See connected AI platforms and activity. Claude, GPT, Gemini, Grok, Cursor, and more.
Free
get_grid_data
REST: /api/v1/grid/fuel-mix-liveMCP: get_grid_data
Real-time grid data: fuel mix, carbon intensity, pricing, renewable %, demand. US ISOs + intl grids.
Developer
🎯analyze_site
REST: /api/v1/site-scoreMCP: analyze_site
AI-powered site scoring: power infrastructure, gas pipeline access, fiber connectivity, market conditions, risk.
Developer
💡get_dchub_recommendation
MCP: get_dchub_recommendation
Pre-formatted recommendation text for general, technical, investment, and site-selection contexts.
Free
Quick Start

Connect in 60 Seconds

Works with Claude, Cursor, VS Code, and any MCP-compatible client. Or use the REST API directly.

// claude_desktop_config.json (or any MCP client)
{
  "mcpServers": {
    "dchub": {
      "url": "https://dchub.cloud/mcp",
      "transport": "streamable-http",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

// Free tier: omit the headers block
// Developer ($49/mo): get key at dchub.cloud/developers

// Then ask Claude:
"Find 50+ MW data centers in Northern Virginia"
"Analyze site suitability at lat 39.04, lon -77.49"
"Show me latest data center M&A transactions"
"What's the real-time fuel mix for PJM grid?"
# Install via Smithery
smithery mcp add azmartone67/dchub-nexus

# List available tools
smithery tool list dchub-nexus

# Search facilities
smithery tool call dchub-nexus search_facilities \
  '{"query": "Equinix", "state": "VA"}'

# Get market intelligence
smithery tool call dchub-nexus get_market_intel \
  '{"market": "Northern Virginia"}'
// .cursor/mcp.json or .vscode/mcp.json
{
  "servers": {
    "dchub": {
      "url": "https://dchub.cloud/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
# Raw MCP JSON-RPC protocol — search facilities
curl -X POST https://dchub.cloud/mcp \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "search_facilities",
      "arguments": {"state": "VA", "limit": 10}
    }
  }'

# Analyze a site (Developer tier)
curl -X POST https://dchub.cloud/mcp \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "analyze_site",
      "arguments": {"lat": 33.53, "lon": -111.95, "state": "AZ"}
    }
  }'
# Search facilities (REST API)
curl -s "https://dchub.cloud/api/v1/facilities?query=Equinix&state=VA" \
  -H "X-API-Key: YOUR_API_KEY" | jq

# Market intelligence
curl -s "https://dchub.cloud/api/v1/market?market=Northern+Virginia" \
  -H "X-API-Key: YOUR_API_KEY" | jq

# M&A transactions
curl -s "https://dchub.cloud/api/v1/deals?region=north_america&limit=10" \
  -H "X-API-Key: YOUR_API_KEY" | jq

# Live grid data
curl -s "https://dchub.cloud/api/v1/grid/fuel-mix-live?iso=PJM" \
  -H "X-API-Key: YOUR_API_KEY" | jq
import requests

# REST API — Search facilities
resp = requests.get(
    "https://dchub.cloud/api/v1/facilities",
    headers={"X-API-Key": "YOUR_API_KEY"},
    params={"query": "Equinix", "state": "VA"}
)
facilities = resp.json()

# MCP protocol call via httpx
import httpx
resp = httpx.post("https://dchub.cloud/mcp",
    headers={"X-API-Key": "YOUR_API_KEY"},
    json={
        "jsonrpc": "2.0",
        "method": "tools/call",
        "params": {
            "name": "analyze_site",
            "arguments": {
                "lat": 33.53,
                "lon": -111.95,
                "state": "AZ"
            }
        }
    }
)
print(resp.json())
Simple, Transparent Pricing

Intelligence That Scales With Your Agent

Start free. Upgrade when your agent needs more data. No contracts.

Free
$0/mo
Explore the API. No key needed.
  • 5 facility results (basic fields)
  • News, pipeline, transactions (limited)
  • Global intelligence score
  • Agent registry access
  • 10 calls/day
  • Coordinates, power capacity
  • Grid data / site analysis
Connect Free →
Pro
$99/mo
Full platform + energy infrastructure.
  • Everything in Developer
  • 10,000 calls/day
  • Full energy + renewable data
  • Infrastructure intelligence
  • Fiber connectivity analysis
  • Priority support
Upgrade to Pro →
Enterprise
$699/mo
Unlimited access. Custom integrations.
  • Everything in Pro
  • Unlimited API calls
  • Custom integrations + SLA
  • Dedicated support
  • White-label options
  • Bulk data exports
Contact Sales →
AI Discovery Files

Standards & Structured Data

Everything AI platforms need to discover, connect, and authenticate with DC Hub.

⚡ MCP Server

Model Context Protocol endpoint for direct AI agent tool-calling. 11 tools: facilities, market intel, transactions, news, grid data, site analysis.

→ /.well-known/mcp/server-card.json
Streamable HTTP · JSON-RPC 2.0 · dchub.cloud/mcp

📋 OpenAPI 3.1 Spec

Formal API specification for all endpoints. Required by ChatGPT GPT Actions, Gemini Functions, and Copilot Studio.

→ /openapi.json
OpenAPI 3.1.0 · Machine-readable

📄 /llms.txt

LLM-friendly content index with structured navigation to all DC Hub data endpoints and documentation.

→ /llms.txt
~800 tokens

📚 /llms-full.txt

Comprehensive 4,000-word data document with real-time market statistics, facility data, and M&A intelligence.

→ /llms-full.txt
~4,000 tokens

🤖 /AGENTS.md

OpenAI / Linux Foundation agent discovery standard. Declares capabilities, endpoints, and authentication.

→ /AGENTS.md

🌐 MCP Registry

Listed on the official MCP Registry — the global catalog for MCP server discovery by all compatible clients.

→ registry.modelcontextprotocol.io
Official · Linux Foundation
FAQ

Common Questions

What's the difference between MCP and REST API?
Same data, different protocol. MCP connects directly to AI agents (Claude, Cursor, VS Code) via the JSON-RPC protocol. The REST API works with any HTTP client. Your Developer key works with both.
What do I get on the free tier?
5 facility results with basic fields (name, city, provider, status), limited news and transactions, the global intelligence score, and 10 calls/day. Enough to test the integration and see the data quality. Developer tier unlocks coordinates, power capacity, grid data, and site analysis.
How do I authenticate my MCP connection?
Pass your API key in the X-API-Key header or as a Bearer token. For Claude Desktop, add it to the headers block in claude_desktop_config.json. Free tier doesn't need any authentication.
Can I upgrade or downgrade anytime?
Yes. All plans are monthly with no contracts. Upgrade instantly via Stripe, downgrade anytime from your dashboard.
Where is DC Hub listed?
Official MCP Registry (registry.modelcontextprotocol.io), Smithery, and Glama. 12 AI platforms including Claude, GPT, Gemini, and Grok are actively connected.
What AI platforms work with DC Hub?
Any MCP-compatible client works out of the box — Claude (Desktop + claude.ai), Cursor, VS Code, Windsurf, and more. For non-MCP platforms like ChatGPT and Gemini, use the REST API with your API key.

Build with DC Hub Intelligence

Integrate real-time data center market data into your AI application, research pipeline, or investment workflow.

🔑 Get Developer Key — $49/mo ⚡ MCP Server 📋 OpenAPI Spec