Back to Browse

Drawx MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Generate draw.io diagrams and architecture designs from natural language, via the DrawX API.

About

Generate draw.io diagrams and architecture designs from natural language, via the DrawX API.

Security Report

5.2
Moderate5.2Moderate Risk

A well-structured MCP server with proper authentication, secure credential handling, and appropriate error handling. The server correctly reads API credentials from environment variables, validates inputs with Zod, and implements robust API error handling. No malicious patterns or dangerous code detected. Minor code quality observations around broad exception handling and logging do not materially affect security. Supply chain analysis found 2 known vulnerabilities in dependencies (2 critical, 0 high severity). Package verification found 1 issue.

7 files analyzed · 5 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your DrawX API key (create one at https://getdrawx.com → Settings → API keys; starts with drawx_live_).Required

Environment variable: DRAWX_API_KEY

Override the DrawX API base URL (defaults to https://getdrawx.com/api/v1).Optional

Environment variable: DRAWX_API_BASE

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-saharshpamecha-drawx-mcp-server": {
      "env": {
        "DRAWX_API_KEY": "your-drawx-api-key-here",
        "DRAWX_API_BASE": "your-drawx-api-base-here"
      },
      "args": [
        "-y",
        "@drawx/mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@drawx/mcp-server

npm version CI license: MIT

Generate draw.io diagrams and architecture designs from inside Claude, Cursor, or VS Code.

DrawX MCP is a Model Context Protocol server that gives your AI assistant three tools:

  • generate_diagram — one-shot: natural-language prompt → complete draw.io XML.
  • architect_design — from a brief, produce a High-Level Design diagram (optionally an LLD + design doc).
  • whoami — verify your API key + see remaining quota.

Behind the scenes it calls the DrawX public API, so output matches the DrawX web app exactly.


Requirements

  • Node.js 18+
  • A DrawX API key — create one in DrawX → Settings → API keys. Keys start with drawx_live_. API access is a paid feature (bundled with the DrawX Pro plan).

Install

npm install -g @drawx/mcp-server

Or, if your MCP client supports npx, no install is needed — reference npx @drawx/mcp-server directly.

Configure your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "drawx": {
      "command": "npx",
      "args": ["-y", "@drawx/mcp-server"],
      "env": {
        "DRAWX_API_KEY": "drawx_live_..."
      }
    }
  }
}

Restart Claude Desktop. In a new chat, ask "Draw me a microservices checkout flow" — Claude will call generate_diagram and show the resulting XML.

Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "drawx": {
      "command": "npx",
      "args": ["-y", "@drawx/mcp-server"],
      "env": { "DRAWX_API_KEY": "drawx_live_..." }
    }
  }
}

VS Code (Copilot MCP)

Add to your workspace or user settings.json:

{
  "mcp": {
    "servers": {
      "drawx": {
        "command": "npx",
        "args": ["-y", "@drawx/mcp-server"],
        "env": { "DRAWX_API_KEY": "drawx_live_..." }
      }
    }
  }
}

Environment variables

VariableRequiredPurpose
DRAWX_API_KEYyesYour DrawX API key (drawx_live_...).
DRAWX_API_BASEnoOverride the API base URL (default https://getdrawx.com/api/v1). Useful for staging.

Tools reference

generate_diagram

Turn a description into draw.io XML.

Inputs

  • prompt (string, required) — what to draw.
  • mode"flash" (default), "pro", or "ultra". Trades speed for quality.
  • previousXml — an existing mxfile to modify.

Output — assistant text: a summary line (model, tokens, cost) followed by the full <mxfile>...</mxfile> XML in a fenced code block. Paste the XML into diagrams.net or save as .drawio.

architect_design

Run the DrawX Architect Co-Pilot on a brief. Streams intermediate progress; returns a JSON payload with hld (and optional lld, doc).

Inputs

  • brief (string, required, ≥ 20 chars) — what to design.
  • depth"hld", "hld_lld" (default), or "hld_lld_doc".
  • style"cloud_agnostic" (default), "aws", "azure", or "gcp".
  • mode"flash" (default), "pro", or "ultra".

whoami

No inputs. Returns your email, plan, API tier, and remaining monthly API quota.

Quota + rate limits

API usage is metered on a separate tier from your in-app usage. Pro subscribers get 200 API calls / month. The rate limit is 60 requests / minute. On the free plan, API access is not enabled — upgrade at getdrawx.com.

Local development

git clone https://github.com/SaharshPamecha/drawx-mcp-server
cd drawx-mcp-server
npm install
npm run build
DRAWX_API_KEY=drawx_live_... node dist/index.js  # runs over stdio; use an MCP inspector
npm test

License

MIT © 2026 DrawX

Reviews

No reviews yet

Be the first to review this server!

Drawx MCP Server - Generate draw.io diagrams and architecture designs from | MCP Marketplace