A
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 7/28/2026, 8:06:13 AM

Aidc Ai Mcp

aidc2026ai-melon
πŸ“ Architecture & Design
0 Views
0 Installs

πŸŽ–οΈ πŸ“‡ ☁️ - Deterministic AI data-center design engine exposed as MCP tools (design, validate, layout): rack count, design PUE, total MVA, liquid/air cooling split, CDU planning, cost & timeline. NVIDIA Rubin-era, 22.9 kV intake, Korea. Remote Streamable HTTP at https://aidc-ai.io/api/mcp; no key for the anonymous tier.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "aidc2026ai-melon-aidc-ai-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "aidc2026ai-melon-aidc-ai-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

AIDC-AI.IO β€” MCP Connector

AI data center sizing, validation, and layout via a remote MCP server.
AI 데이터센터 μžλ™ν™” 툴: 결정둠적 μ—”μ§„μœΌλ‘œ AI 데이터센터λ₯Ό μ„€κ³„Β·κ²€μ¦Β·λ ˆμ΄μ•„μ›ƒν•©λ‹ˆλ‹€.

MCP Registry License


What is this?

This repository shows how to connect an MCP client or REST client to the AIDC-AI.IO Design Engine β€” a deterministic, source-backed engine that sizes, validates, and lays out Rubin-era AI data centers.

What the engine does (on the server):

  • Accepts an IT load, rack density, GPU generation (Hopper / Blackwell / NVIDIA Vera Rubin NVL72 / VR200), and site constraints.
  • Returns deployment-unit-snapped rack counts, design PUE, power-factor-backed total MVA (22.9 kV intake), liquid-cooling / air-cooling heat split, CDU planning values, cost (KRW), and timeline.
  • Validates designs against electrical, cooling, layout, safety, and data rules with severity-classified findings and RFIs.
  • Generates a rack-plan grid (hall dimensions, row/column positions in mm) and a site-block layout.

What this repo contains:

  • MCP client configuration snippet.
  • curl and Node.js examples that call the public REST projection (/api/agent/*).
  • An illustrative response so you know what fields to expect.

The core calculation engine, reference catalogs (rack library, AHJ/code matrix, 1.6T fabric topology, direct-to-chip (D2C) cooling models, etc.) are proprietary and remain server-side. No engine source is published here.

Korea live. Region-specific: 22.9 kV utility intake, Korean AHJ/code, climate, and operations validation. Keywords the engine targets: AI data center, AIDC, NVIDIA Rubin, Vera Rubin, 22.9kV, liquid cooling, CDU, D2C, 1.6T fabric, PUE.


MCP Server

FieldValue
TransportStreamable HTTP
Endpointhttps://aidc-ai.io/api/mcp
Official registry nameio.aidc-ai/design-engine
AuthNone required (anonymous tier). Optional Authorization: Bearer aidc_live_<32hex> raises rate tier.
Tool count3
Rate limit (anon)10 req / hour on /api/agent/*

Tools

ToolOne-line description
designSize an AI data center: returns rack count, PUE, total MVA, liquid/air cooling split, CDU count, cost (KRW), and build timeline.
validateCheck a design against electrical, cooling, layout, safety, and data rules; returns severity-classified findings and RFIs.
layoutGenerate a rack-plan grid (hall dimensions, row/column positions in mm) and a site-block layout.

Quick Start

MCP client configuration

Add this to your MCP client config (e.g. Claude Desktop claude_desktop_config.json, Cursor MCP settings, or any Streamable HTTP client):

{
  "mcpServers": {
    "aidc-design-engine": {
      "url": "https://aidc-ai.io/api/mcp"
    }
  }
}

The server is immediately usable without an API key. To raise the rate limit, add:

{
  "mcpServers": {
    "aidc-design-engine": {
      "url": "https://aidc-ai.io/api/mcp",
      "headers": {
        "Authorization": "Bearer aidc_live_<your-32-hex-key>"
      }
    }
  }
}

Contact contact@aidc-ai.io for a registered or partner key.

Docker (local stdio server)

Build and run the same published MCP server used for registry evaluation:

docker build -t aidc-ai-mcp .
docker run --rm -i aidc-ai-mcp

The container communicates over stdio and connects to https://aidc-ai.io by default. No API key is required for the anonymous tier.


REST Usage

The MCP tools proxy to these REST endpoints (permissive CORS, same optional auth):

ToolREST endpoint
designPOST https://aidc-ai.io/api/agent/design
validatePOST https://aidc-ai.io/api/agent/validate
layoutPOST https://aidc-ai.io/api/agent/layout

Example: size a 30 MW Rubin-era AI data center

curl -s -X POST https://aidc-ai.io/api/agent/design \
  -H "Content-Type: application/json" \
  -d '{
    "itLoadMw": 30,
    "rackDensityKw": 120,
    "gpuGen": "rubin",
    "siteAreaSqm": 5000,
    "region": "metropolitan",
    "options": {
      "redundancy": "n_plus_1",
      "coolingMode": "liquid",
      "pueTarget": 1.2
    }
  }'

Illustrative response

The JSON below is illustrative β€” field names and structure reflect the actual API shape, but exact numbers will vary by engine version and input. See design.response.example.json for the full object.

{
  "rackCount": 256,
  "rackCountRaw": 250,
  "pueDesign": 1.21,
  "mvaTotal": 45.8,
  "liquidCoolingLoadMw": 26.4,
  "airCoolingLoadMw": 3.6,
  "cduCount": 13,
  "totalCostKrw": 187500000000,
  "totalMonths": 28,
  "warnings": []
}

(30 MW IT / 120 kW per rack / Rubin / 5 000 mΒ² / metropolitan / N+1 / liquid / PUE 1.2 target)


Tools β€” Input Reference

design

Size an AI data center from scratch.

FieldTypeRange / valuesRequired
itLoadMwnumber0 < x ≀ 1000Yes
rackDensityKwnumber0 < x ≀ 500Yes
gpuGenstring"hopper" | "blackwell" | "rubin"Yes
siteAreaSqmnumber0 < x ≀ 1 000 000Yes
regionstring"metropolitan" | "regional"Yes
options.redundancystring"n" | "n_plus_1" | "2n"No
options.coolingModestring"air" | "hybrid" | "liquid"No
options.pueTargetnumber1.0 – 2.5No

Key response fields: rackCount, rackCountRaw, pueDesign, mvaTotal, liquidCoolingLoadMw, airCoolingLoadMw, cduCount, totalCostKrw, totalMonths, warnings[]


validate

Check a design against engineering rules.

{
  "rawInput": {
    "itLoadMw": 30,
    "rackDensityKw": 120,
    "gpuGen": "rubin",
    "siteAreaSqm": 5000,
    "region": "metropolitan"
  }
}

Key response fields: findings[] (each with severity, code, message), rfis[], passCount, warnCount, failCount


layout

Generate a rack plan and site block layout.

{
  "design": {
    "itLoadMw": 30,
    "rackDensityKw": 120,
    "gpuGen": "rubin",
    "siteAreaSqm": 5000,
    "region": "metropolitan"
  },
  "siteCentroid": { "lat": 37.5665, "lng": 126.9780 },
  "siteAreaSqm": 5000
}

Key response fields: rackPlan (hall dimensions, rows, columns, per-rack positions in mm), sitePlan (block-level layout in percentage coords)


Links

ResourceURL
Websitehttps://aidc-ai.io
OpenAPI 3.1 spechttps://aidc-ai.io/api/openapi.json
MCP server cardhttps://aidc-ai.io/.well-known/mcp/server.json
LLM contexthttps://aidc-ai.io/llms.txt
Full LLM contexthttps://aidc-ai.io/llms-full.txt
Contactcontact@aidc-ai.io

License

This repository (examples and connector code only) is released under the MIT License.
The AIDC-AI.IO engine, reference catalogs, and all server-side logic remain proprietary.

Related MCP Servers

F
Figwright

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Bidirectional Figma server over a local WebSocket relay: turn a selection into framework-aware code (reusing your components and tokens), or author frames, text, styles, variables, and whole screens back onto the canvas. 92 tools, any MCP client, no Dev Mode seat or paid tier.

πŸ“ Architecture & Design0 views
M
Mermaid Grammer Inspector Mcp

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - A Model Context Protocol (MCP) server for validating Mermaid diagram syntax and providing comprehensive grammar checking capabilities

πŸ“ Architecture & Design0 views
E
Excalidraw Architect Mcp

🐍 🏠 🍎 πŸͺŸ 🐧 - Generate beautiful Excalidraw architecture diagrams with auto-layout, architecture-aware component styling, and stateful editing. 50+ technology mappings including databases, message queues, caches, and more. No API keys required.

πŸ“ Architecture & Design0 views
N
Network Sketcher

🐍 🏠 🍎 πŸͺŸ 🐧 - Local-first MCP server for AI-driven network design. Creates Cisco-style network master files, L1/L2/L3 topology diagrams, combined HTML viewers, device tables, and AI Context files.

πŸ“ Architecture & Design0 views
β˜… Featured

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

View ServerFeature your own server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.