mcpbeat Sign in

CodePic MCP Server

answering

CodePic is answering right now. Last checked 5 min ago. It exposes 7 tools. Last commit 16 Jun 2026.

AI agent draws editable hand-drawn diagrams (flowchart, ER, architecture) via MCP, not static images

Uptime history 47 days of history
47 days agonow
100.0%
Uptime 24h
92 of 92 checks
7
Tools
read from the server
588 ms
Response time
average over 24h
1
Stars
last commit 16 Jun 2026

What changed 14

Every tool that appeared, vanished or quietly changed what it asks for. Recorded since 9 August 2026. No other catalogue keeps this.

11 Sep a tool changed the parameters it asks for2 times that day list_templates
30 Aug 2 tools changed the parameters they ask for create_diagram, update_diagram
29 Aug 2 tools changed the parameters they ask for create_diagram, update_diagram
29 Aug 2 tool descriptions were rewritten create_diagram, get_shape_docs
29 Aug a tool appeared get_shape_catalog
22 Aug a tool changed the parameters it asks for list_templates
18 Aug a tool changed the parameters it asks for list_templates
13 Aug a tool changed the parameters it asks for2 times that day list_templates
9 Aug a tool changed the parameters it asks for list_templates
and 2 more, back to 9 August 2026

Nothing serious here today

Today is the operative word: we check CodePic every 15 minutes and re-read its code on every release. Watch it and you find out the day that stops being true.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 5 min ago.

run in your terminal
claude mcp add codepic --transport http https://codepic.cc/api/mcp/mcp
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "codepic": {
      "url": "https://codepic.cc/api/mcp/mcp"
    }
  }
}
~/.codex/config.toml
[mcp_servers.codepic]
url = "https://codepic.cc/api/mcp/mcp"
.cursor/mcp.json
{
  "mcpServers": {
    "codepic": {
      "url": "https://codepic.cc/api/mcp/mcp"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "codepic": {
      "url": "https://codepic.cc/api/mcp/mcp"
    }
  }
}

Available tools 7

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

diagram
create_diagram
Create a custom CodePic hand-drawn style diagram by specifying nodes and edges. Requires API Key authentication. Returns a public view URL. **THIS IS THE DEFAULT TOOL FOR ANY USER-DESCRIBED DIAGRAM.** Whenever the user describes a diagram they want ("draw an A/B test flowchart", "帮我画一个登录流程", "a system architecture with a load balancer and 3 servers", etc.), build it here from their description. Do NOT fall back to `create_from_template` / `list_templates` unless the user explicitly asked for a template. When responding to the user, present the returned URL as a clickable markdown link (e.g. `[Open in CodePic →](URL)`) so the user can click it directly in their AI client (Cursor / Claude / etc.). **Container nesting (IMPORTANT — use whenever possible):** - Set `parentId` on a node to nest it inside another node. ANY node type can be a container. - The parent automatically becomes draggable-as-a-group and users can keep dropping elements into it. - Call `get_shape_catalog` with tag `container-capable` to choose among native structural containers and adaptive semantic shapes such as rectangles, circles, ellipses, diamonds, cylinders, and hexagons. - Parent bounds are expanded automatically using the selected shape's title and outline safe area. - Use absolute canvas coordinates for all nodes — child coordinates are auto-converted to parent-relative. - Set node `name`, `description`, and `tags` when later MCP/Agent reads need stable business semantics beyond visible text. - **Rule**: whenever 2+ nodes logically belong to the same module / component / region, create a container node first and set `parentId` on each child. **Design tips for beautiful diagrams:** - Use semantic types: `button-primary` for CTA buttons (auto blue), `diamond` for decisions - Pick a color palette and apply it consistently — light fill + darker stroke of the same hue: • Blue: fillColor #e3f2fd / #bbdefb, strokeColor #1565c0, fontColor #1565c0 (or #ffffff on dark fill) • Green: fillColor #e8f5e9 / #c8e6c9, strokeColor #2e7d32, fontColor #1b5e20 • Purple: fillColor #f3e5f5 / #e1bee7, strokeColor #6a1b9a, fontColor #4a148c • Neutral: fillColor #f8fafc / #f1f5f9, strokeColor #475569, fontColor #1e293b - Each semantic group (decisions, processes, I/O) should share a fill color to create visual hierarchy - Dark fill (e.g. #1565c0, #ef4444) → fontColor #ffffff; light fill → fontColor #111827
get_diagram
Fetch the current state of an existing CodePic diagram. Returns a compact summary of all elements with their IDs, types, positions, and parent-child relationships. Use this before update_diagram when you need to: add nested children to existing containers, make targeted edits to specific elements, or understand the current structure. Requires API Key authentication.
update_diagram
Update an existing CodePic diagram. You can rename it, replace all nodes/edges, or add/remove individual nodes and edges. Requires API Key authentication. When responding to the user, present the returned URL as a clickable markdown link (e.g. `[Open in CodePic →](URL)`) so the user can click it directly in their AI client (Cursor / Claude / etc.).
shape
get_shape_catalog
Return compact machine-readable shape metadata for planning a diagram: semantic tags, geometry family, container support, recommended padding, default size, and MCP availability. Use this before create_diagram when choosing shapes or containers. Unlike get_shape_docs, this tool is concise and filterable.
get_shape_docs
Return the full CodePic shape reference — all element types, their fields, data payloads, and JSON examples. Call get_shape_catalog first for concise shape selection and container capabilities; use this tool when you need complete fields or type-specific data (e.g. select options, triangle direction, callout tail). No authentication required.
from
create_from_template
Create a new CodePic diagram from a predefined template. Requires API Key authentication. Returns a public view URL and edit URL. **STRICT USAGE RULE — READ BEFORE CALLING:** Only call this tool when the user has **explicitly** asked to use a template. Explicit signals include phrases like: "use a template", "from template", "用模板", "从模板创建", "list templates and pick one", or the user directly naming/selecting a template slug. If the user merely describes a diagram they want (e.g. "draw an A/B test flowchart", "帮我画一个登录流程", "给我做一个系统架构图"), **DO NOT** call this tool. Call `create_diagram` instead and build the diagram from the user's description. Never silently substitute a template for a described diagram — the user will get a generic result that does not match what they asked for. When responding to the user, present the returned URL as a clickable markdown link (e.g. `[Open in CodePic →](URL)`) so the user can click it directly in their AI client (Cursor / Claude / etc.).
templates
list_templates
List all available CodePic diagram templates. Use this ONLY when the user has explicitly asked to browse, list, or pick from templates (e.g. "show me templates", "列出模板"). Do NOT call this as a preparatory step when the user just described a diagram they want — in that case go straight to `create_diagram`. Discovering slugs here is only meaningful before a user-confirmed `create_from_template` call.

Endpoints

URLTransportStateLatencyChecked
https://codepic.cc/api/mcp/mcp streamable-http answering 992 ms 5 min ago

Alternatives to CodePic

same job, measured the same way
Revibe MCP
by selvatuple

Analyze any codebase — get architecture, file roles, execution flows, and agent context.

29 installs/wk local only
Pharaoh
by pharaoh

Codebase knowledge graph — architectural awareness for AI coding agents via MCP

461 installs/wk answering
Ckb
by simplyliz

Code intelligence MCP server — 80+ tools for navigation, impact analysis, and architecture

274 installs/wk local only
AI Diagram Maker
by erajasekar

Generate software diagrams from natural language, code, ASCII, images, Mermaid.

47 installs/wk local only
Draw2agent
by zero-abd

Draw on your website, let your AI agent see it. Visual context for code generation via MCP.

49 installs/wk local only
Workflow Generator
by askuma

Architecture diagram with concurrency capacity and bottleneck estimates from any codebase.

61 installs/wk local only
Arm MCP Server
by arm

Official Arm MCP server for code migration, optimization, and Arm architecture guidance

local only
Codex Tldraw MCP
by jananadiw

A Codex stdio MCP server that generates repo-local tldraw diagrams and detects code graph drift.

75 installs/wk local only

CodePic — questions

Answers built from our own checks of this server.

What can CodePic do?
It exposes 7 tools, read directly from the server on our last check. Among them: create_diagram, create_from_template, get_diagram, get_shape_catalog, get_shape_docs, list_templates and 1 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
What is CodePic mostly used for?
Its tools cluster around diagram and shape. That is what this server is built to work with — the grouping comes from the actual tool names, not from a category we assigned.
Is CodePic working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 92 of 92 checks got a reply (100.0%), average response time 588 ms. The bar chart above shows every period we have measured.
How do I connect CodePic?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does CodePic need an API key?
No. CodePic completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 7 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is CodePic?
It answers our handshake in 588 ms on average, which is faster than 22% of all working MCP servers we measure. That is on the slow side — worth knowing if the tool sits inside an interactive loop. The comparison comes from our own checks across the whole registry, every 15 minutes.
Is CodePic open source?
Yes — it is published under the MIT licence and 1 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.