# Does Aidc2026ai Melon have an MCP server?

**Yes — Official.** Aidc2026ai Melon maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [aidc2026ai-melon/aidc-ai-mcp](https://github.com/aidc2026ai-melon/aidc-ai-mcp) — ★ 3, last push 2026-07-20, MIT
- Maintainer: aidc2026ai-melon
- Language: JavaScript
- Category: [Architecture & Design](https://mcpyet.com/category/architecture-design/)
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> AI data center automation tool — MCP connector (design · validate · layout). Remote MCP: aidc-ai.io/api/mcp · registry io.aidc-ai/design-engine. Engine private.
> — how [aidc2026ai-melon/aidc-ai-mcp](https://github.com/aidc2026ai-melon/aidc-ai-mcp) describes itself

Project site: <https://aidc-ai.io>

## The receipts

- **Official repository:** [aidc2026ai-melon/aidc-ai-mcp](https://github.com/aidc2026ai-melon/aidc-ai-mcp) — ★ 3, pushed 2026-07-20, MIT (active)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add aidc2026aimelon -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "aidc2026aimelon": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "aidc2026aimelon": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "aidc2026aimelon": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

Verdict derived by matching the Aidc2026ai Melon organization against its GitHub presence and cross-checking against published MCP server lists.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Corrections: hello@mcpyet.com.

---

Source: https://mcpyet.com/mcp/aidc2026ai-melon/ — data refreshed 2026-08-11
