# drawarch [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/Ajey95/drawarch-mcp  
**GitHub Stars:** 1  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/drawarch

## Description
Create editable Draw.io architecture diagrams from prompts and reference images.

## Tools
Capabilities this server exposes over MCP:

- **list_themes** — List six built-in visual themes.
- **list_assets** — Search the bundled real-world icon catalog.
- **resolve_asset** — Resolve a bundled or opt-in online SVG with provenance.
- **create_drawio** — Generate a deterministic themed architecture diagram.
- **validate_drawio** — Validate a generated architecture file.
- **prepare_reference_recreation** — Store an absolute editable scene graph and optionally approve its sources.
- **update_reference_plan** — Create an immutable next revision and invalidate earlier approvals.
- **get_reference_plan** — Read the latest scene-graph revision for review.
- **create_reference_drawio** — Render an approved plan and return the portable `.drawio` artifact.
- **validate_reference_drawio** — Validate native structure, references, and embedded-image safety.
- **compare_reference_recreation** — Score structural coverage and report missing editable elements.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "drawarch": {
    "command": "npx",
    "args": ["-y","drawarch-mcp@0.2.0"]
  }
}
```

## Documentation & README

<p align="center">
  <img src="https://raw.githubusercontent.com/Ajey95/drawarch-mcp/HEAD/docs/assets/readme-hero.svg" alt="DrawArch transforms a reference architecture image into a native editable Draw.io diagram" width="100%" />
</p>

<h1 align="center">DrawArch MCP</h1>

<p align="center">
  <strong>Turn architecture prompts and reference images into portable, natively editable Draw.io files.</strong>
  <br />
  Your MCP host does the visual reasoning. DrawArch does the deterministic rendering, asset embedding, validation, and delivery.
</p>

<p align="center">
  <a href="https://github.com/Ajey95/drawarch-mcp/actions/workflows/ci.yml"><img alt="CI status" src="https://github.com/Ajey95/drawarch-mcp/actions/workflows/ci.yml/badge.svg" /></a>
  <a href="https://github.com/Ajey95/drawarch-mcp/releases/tag/v0.2.0"><img alt="GitHub release" src="https://img.shields.io/github/v/release/Ajey95/drawarch-mcp?display_name=tag&sort=semver&color=7c3aed" /></a>
  <a href="https://www.npmjs.com/package/drawarch-mcp"><img alt="npm version" src="https://img.shields.io/npm/v/drawarch-mcp?color=cb3837&logo=npm" /></a>
  <a href="https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.Ajey95%2Fdrawarch"><img alt="Official MCP Registry" src="https://img.shields.io/badge/MCP%20Registry-active-22c55e" /></a>
  <a href="https://github.com/Ajey95/drawarch-mcp/pkgs/container/drawarch-mcp"><img alt="GHCR container" src="https://img.shields.io/badge/GHCR-drawarch--mcp-2563eb?logo=github" /></a>
  <img alt="Node.js 20 or newer" src="https://img.shields.io/badge/Node.js-20%2B-339933?logo=nodedotjs&logoColor=white" />
  <img alt="MCP stdio and Streamable HTTP" src="https://img.shields.io/badge/MCP-stdio%20%7C%20HTTP-06b6d4" />
  <a href="https://github.com/Ajey95/drawarch-mcp/blob/HEAD/LICENSE"><img alt="MIT license" src="https://img.shields.io/badge/license-MIT-22c55e" /></a>
</p>

<p align="center">
  <a href="#quick-start"><strong>Quick start</strong></a> ·
  <a href="#reference-image-recreation"><strong>See the workflow</strong></a> ·
  <a href="https://github.com/Ajey95/drawarch-mcp/blob/HEAD/docs/ARCHITECTURE.md"><strong>Architecture</strong></a> ·
  <a href="https://github.com/Ajey95/drawarch-mcp/blob/HEAD/CONTRIBUTING.md"><strong>Contribute</strong></a>
</p>

---

## See what stays editable

<p align="center">
  <img src="https://raw.githubusercontent.com/Ajey95/drawarch-mcp/HEAD/docs/assets/reference-recreation-demo.svg" alt="A DrawArch-generated SafeSense system architecture open as independently editable Draw.io objects with layers and validation" width="100%" />
</p>

This is not a screenshot pasted into a diagram. Containers, labels, icons, shapes, connector endpoints, ports, and waypoints remain separate native `mxCell` objects. Assets are embedded inside the `.drawio` file, so the result remains portable and editable offline.

> [!IMPORTANT]
> DrawArch does not call another LLM and does not require a second LLM API key. ChatGPT, Claude, Codex, Cursor, or another vision-capable MCP host analyzes the request or image and supplies the scene graph.

## What DrawArch gives you

| | Capability | What it means |
|---|---|---|
| 🧩 | Native editability | Move, restyle, relabel, reconnect, or delete individual objects in diagrams.net. |
| 🎯 | Reference recreation | Rebuild an attached architecture image with absolute geometry, layers, z-order, ports, and waypoints. |
| 🌐 | Real-world assets | Use bundled icons, Iconify-compatible icons, user images, or approved HTTPS image sources. |
| 📦 | Portable artifacts | The generated `.drawio` is returned directly through MCP with all image assets embedded. |
| 🔐 | Approval-aware rendering | Immutable plan revisions and revision-bound approval tokens prevent stale or unreviewed renders. |
| ✅ | Validation built in | Check Draw.io structure, references, asset safety, and structural coverage before accepting output. |

## Reference-image recreation

Attach an architecture image to your MCP host and ask:

> Recreate this image with DrawArch. Preserve its layout, labels, icons, grouping, and connector routing. Keep every visible object editable and use real icons where appropriate.

The host and DrawArch then follow a reviewable four-step loop:

1. **Prepare** — the host vision model calls `prepare_reference_recreation` with a typed absolute scene graph.
2. **Review and approve** — the user or host policy reviews layout and online asset sources; approval is bound to that exact revision.
3. **Create** — `create_reference_drawio` safely resolves and embeds assets, renders native cells, validates the file, and returns the `.drawio` resource.
4. **Compare and revise** — `compare_reference_recreation` measures structural coverage; the host adjusts the plan and repeats when needed.

```mermaid
flowchart LR
    A[Prompt or<br/>reference image] --> B[Vision-capable<br/>MCP host]
    B -->|typed scene graph| C{DrawArch MCP}
    C --> D[Plan revision<br/>& approval]
    D --> E[Safe asset<br/>resolver]
    E --> F[Native Draw.io<br/>renderer]
    F --> G[Validation &<br/>comparison]
    G -->|portable resource| H[Editable<br/>.drawio file]
    G -. revise .-> B
```

In plain terms: your existing AI analyzes the image; DrawArch turns that analysis into a controlled, validated, editable file. The complete contract is demonstrated in [`examples/reference-recreation.json`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/examples/reference-recreation.json).

## Why not just generate an image?

| Requirement | DrawArch | Flat image generation |
|---|:---:|:---:|
| Edit individual components | ✅ | ❌ |
| Reattach and reroute connectors | ✅ | ❌ |
| Preserve explicit IDs and hierarchy | ✅ | ❌ |
| Work offline after generation | ✅ | Usually |
| Validate structure automatically | ✅ | ❌ |
| Recreate with real embedded icons | ✅ | Inconsistent |
| Iterate through a reviewable plan | ✅ | ❌ |
| Guarantee pixel-identical output | No — host-guided iteration | No |

DrawArch optimizes for **high-fidelity, editable reconstruction**, not an opaque pixel replica. The host vision model can inspect the result, update geometry or styling, and render another immutable revision.

## Quick start

Requires [Node.js 20+](https://nodejs.org/) or Docker.

### Run from npm

```bash
npx -y drawarch-mcp@0.2.0
```

DrawArch uses stdio by default. Diagnostics go to stderr, preserving stdout for MCP messages.

### Add it to a local MCP host

```json
{
  "mcpServers": {
    "drawarch": {
      "command": "npx",
      "args": ["-y", "drawarch-mcp@0.2.0"],
      "env": {
        "DRAWARCH_OUTPUT_DIR": "/absolute/path/to/diagrams",
        "DRAWARCH_ONLINE_ASSETS": "false"
      }
    }
  }
}
```

On Windows hosts that do not resolve `npx` directly, set `command` to `npx.cmd`. You can also use the [source checkout](#run-from-source) and configure an absolute `dist/src/index.js` path.

### Run from source

```bash
git clone https://github.com/Ajey95/drawarch-mcp.git
cd drawarch-mcp
npm ci
npm test
npm run build
```

Then configure your host:

```json
{
  "mcpServers": {
    "drawarch": {
      "command": "node",
      "args": ["/absolute/path/to/drawarch-mcp/dist/src/index.js"],
      "env": {
        "DRAWARCH_OUTPUT_DIR": "/absolute/path/to/diagrams"
      }
    }
  }
}
```

### Run the published container

```bash
docker run --rm -p 3000:3000 \
  -e DRAWARCH_API_KEY=replace-with-a-long-random-secret \
  -e DRAWARCH_APPROVAL_SECRET=replace-with-another-random-secret \
  -e DRAWARCH_ALLOWED_HOSTS=localhost,127.0.0.1 \
  -e DRAWARCH_ALLOWED_ORIGINS=localhost,127.0.0.1 \
  -v drawarch-data:/data \
  ghcr.io/ajey95/drawarch-mcp:0.2.0
```

The container runs Streamable HTTP on `http://localhost:3000/mcp`. Its public health probe is `GET /health`; MCP and file downloads require the configured bearer token.

## Local and remote hosts

| Host type | Recommended transport | Notes |
|---|---|---|
| Claude Desktop / Claude Code | stdio or remote HTTP | Local stdio is simplest; remote connectors can use `/mcp`. |
| Codex / Cursor / VS Code | stdio or remote HTTP | Use local stdio for per-developer output or a shared authenticated service. |
| ChatGPT | remote Streamable HTTP | ChatGPT cannot spawn the local stdio process; deploy the container behind HTTPS first. |
| CI and team services | Streamable HTTP | Set bearer auth, stable approval secret, exact host/origin allowlists, TLS, and a persistent output volume. |

DrawArch currently provides the deployable server and public container, not a managed hosted endpoint. Operators supply the HTTPS domain and infrastructure.

## MCP tools

### Architecture generation

| Tool | Purpose |
|---|---|
| `list_themes` | List six built-in visual themes. |
| `list_assets` | Search the bundled real-world icon catalog. |
| `resolve_asset` | Resolve a bundled or opt-in online SVG with provenance. |
| `create_drawio` | Generate a deterministic themed architecture diagram. |
| `validate_drawio` | Validate a generated architecture file. |

### Reference recreation

| Tool | Purpose |
|---|---|
| `prepare_reference_recreation` | Store an absolute editable scene graph and optionally approve its sources. |
| `update_reference_plan` | Create an immutable next revision and invalidate earlier approvals. |
| `get_reference_plan` | Read the latest scene-graph revision for review. |
| `create_reference_drawio` | Render an approved plan and return the portable `.drawio` artifact. |
| `validate_reference_drawio` | Validate native structure, references, and embedded-image safety. |
| `compare_reference_recreation` | Score structural coverage and report missing editable elements. |

## Asset and security model

Reference plans support four asset modes:

| Mode | Source | Server opt-in required? |
|---|---|:---:|
| `bundled` | Original MIT-licensed DrawArch SVG catalog | No |
| `online` | Iconify-compatible icon query | Yes |
| `data` | User-provided SVG, PNG, JPEG, or WebP data URI | No |
| `remote` | Explicit approved HTTPS image URL | Yes |

Remote image handling rejects URL credentials, non-HTTPS protocols, custom ports, private or reserved DNS answers, unsafe redirects, excessive byte/pixel sizes, and active SVG content. Raster images are decoded and re-encoded before embedding. Online assets retain provider and license metadata; users remain responsible for verifying third-party license terms.

HTTP deployments additionally support bearer authentication, host validation, origin validation, safe output paths, atomic writes, and revision-bound HMAC approval tokens. See [`SECURITY.md`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/SECURITY.md) for deployment guidance and vulnerability reporting.

<details>
<summary><strong>Environment variables</strong></summary>

| Variable | Default | Meaning |
|---|---|---|
| `DRAWARCH_TRANSPORT` | `stdio` | Select `stdio` or `http`. |
| `DRAWARCH_OUTPUT_DIR` | `.drawarch-output` | Restricted output and plan-storage directory. |
| `DRAWARCH_ONLINE_ASSETS` | `false` | Enable opt-in online and remote image sources. |
| `DRAWARCH_ICONIFY_BASE_URL` | Iconify API | HTTPS Iconify-compatible provider base URL. |
| `HOST` | `127.0.0.1` | HTTP bind host. |
| `PORT` | `3000` | HTTP listener port. |
| `DRAWARCH_API_KEY` | unset | Bearer token for `/mcp` and `/files`; required for internet exposure. |
| `DRAWARCH_APPROVAL_SECRET` | random per process | HMAC secret for approvals; set a stable secret for shared deployments. |
| `DRAWARCH_ALLOWED_HOSTS` | local hosts | Comma-separated accepted Host values. |
| `DRAWARCH_ALLOWED_ORIGINS` | local origins | Comma-separated accepted Origin hosts. |
| `DRAWARCH_PUBLIC_BASE_URL` | listener URL | Public base URL reported by the server. |

</details>

## Development

```bash
npm ci
npm test                    # 83 tests at the 0.2.0 release
npm run build
npm run sample
npm audit --audit-level=high
npm pack --dry-run
```

The CI matrix verifies Node 20 and 22 on Windows and Linux and builds the production Docker image. Read [`docs/ARCHITECTURE.md`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/docs/ARCHITECTURE.md) for component boundaries and security flow.

## Project status

| Channel | Status |
|---|---|
| Source | [Public on GitHub](https://github.com/Ajey95/drawarch-mcp) |
| Release | [`v0.2.0`](https://github.com/Ajey95/drawarch-mcp/releases/tag/v0.2.0) |
| Container | [`ghcr.io/ajey95/drawarch-mcp:0.2.0`](https://github.com/Ajey95/drawarch-mcp/pkgs/container/drawarch-mcp) |
| npm | [`drawarch-mcp@0.2.0`](https://www.npmjs.com/package/drawarch-mcp/v/0.2.0) |
| Official MCP Registry | [`io.github.Ajey95/drawarch@0.2.0`](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.Ajey95%2Fdrawarch) |
| Managed remote service | Not currently offered |

## Roadmap

- Expand the curated architecture asset catalog and provider metadata.
- Add preview rendering for tighter host-guided visual comparison loops.
- Add pixel-aware comparison as a complement to structural scoring.
- Add installation recipes for more MCP hosts and community catalogs.
- Provide repeatable deployment recipes for common container platforms.

Ideas and focused pull requests are welcome. Please open an [issue](https://github.com/Ajey95/drawarch-mcp/issues) before starting a large behavior or contract change.

## Contributing

Read [`CONTRIBUTING.md`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/CONTRIBUTING.md), follow the [`CODE_OF_CONDUCT.md`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/CODE_OF_CONDUCT.md), and keep generated outputs, credentials, and unlicensed third-party assets out of commits.

For security concerns, follow the private reporting process in [`SECURITY.md`](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/SECURITY.md) rather than opening a public issue.

## License

DrawArch source code and bundled assets are available under the [MIT License](https://github.com/Ajey95/drawarch-mcp/blob/HEAD/LICENSE). Third-party assets keep their original provider licenses and attribution.

---

<p align="center">
  Built for architecture work that should remain understandable, portable, and yours to edit.
</p>

