excalidraw-skill

excalidraw-skill is a skill for Claude Code, Codex from ignizia-code/mcp-excalidraw. It costs 148 tokens per session (4,157 once invoked), scanned A, original, MIT.

A toolkit for creating and editing Excalidraw diagrams through an AI agent. Excalidraw is a browser-based whiteboard for hand-drawn-style diagrams, and the toolkit can use an MCP server or a local REST API.

In plain words
What is it for?
Use it to draw, arrange, edit, import, export, and iteratively refine diagrams on a live Excalidraw canvas.
Why use it?
It lets the agent inspect its canvas output and refine diagrams interactively. It also provides setup guidance when neither connection method is available.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to draw, arrange, edit, import, export, and iteratively refine diagrams on a live Excalidraw canvas.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ignizia-code/mcp-excalidraw/excalidraw-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ignizia-code/mcp-excalidraw --skill excalidraw-skill
Clone the repo
git clone --depth 1 https://github.com/ignizia-code/mcp-excalidraw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for excalidraw-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/ignizia-code/mcp-excalidraw/excalidraw-skill/github.svg)](https://agentmods.dev/skills/ignizia-code/mcp-excalidraw/excalidraw-skill)
Your own site
<a href="https://agentmods.dev/skills/ignizia-code/mcp-excalidraw/excalidraw-skill"><img src="https://agentmods.dev/badge/skills/ignizia-code/mcp-excalidraw/excalidraw-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for excalidraw-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/ignizia-code/mcp-excalidraw/excalidraw-skill"><img src="https://agentmods.dev/badge/skills/ignizia-code/mcp-excalidraw/excalidraw-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 148 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,157 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00148 $0.04157
Opus 5 $0.00074 $0.02079
Sonnet 5 $0.00030 $0.00831
Haiku 4.5 $0.00015 $0.00416

Measured 8d ago against content hash d945a58c6824, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

excalidraw-skill scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/clear-canvas.cjs, scripts/create-element.cjs, scripts/delete-element.cjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://localhost:3000/health
skills/excalidraw-skill/SKILL.md · 281 lines

How it starts

The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Excalidraw Skill

Step 0: Detect Connection Mode

Before doing anything, determine which mode is available. Run these checks in order:

Check 1: MCP Server (Best experience)

mcp-cli tools | grep excalidraw

If you see tools like excalidraw/batch_create_elementsuse MCP mode. Call MCP tools directly.

Check 2: REST API (Fallback — works without MCP server)

curl -s http://localhost:3000/health

If you get {"status":"ok"}use REST API mode. Use HTTP endpoints (curl / fetch) from the cheatsheet.

Check 3: Nothing works → Guide user to install

If neither works, tell the user:

The Excalidraw canvas server is not running. To set up:

  1. Clone: git clone https://github.com/yctimlin/mcp_excalidraw && cd mcp_excalidraw
  2. Build: npm ci && npm run build
  3. Start canvas: HOST=0.0.0.0 PORT=3000 npm run canvas
  4. Open http://localhost:3000 in a browser
  5. (Recommended) Install the MCP server for the best experience:
    claude mcp add excalidraw -s user -e EXPRESS_SERVER_URL=http://localhost:3000 -- node /path/to/mcp_excalidraw/dist/index.js
    

MCP vs REST API Quick Reference

Operation MCP Tool REST API Equivalent
Create elements batch_create_elements POST /api/elements/batch with {"elements": [...]}
Get all elements query_elements GET /api/elements
Get one element get_element GET /api/elements/:id
Update element update_element PUT /api/elements/:id
Delete element delete_element DELETE /api/elements/:id
Clear canvas clear_canvas DELETE /api/elements/clear
Describe scene describe_scene GET /api/elements (parse manually)
Export scene export_scene GET /api/elements (save to file)
Import scene import_scene POST /api/elements/sync with {"elements": [...]}
Snapshot snapshot_scene POST /api/snapshots with {"name": "..."}
Restore snapshot restore_snapshot GET /api/snapshots/:name then POST /api/elements/sync
Screenshot get_canvas_screenshot Only via MCP (needs browser)
Design guide read_diagram_guide Not available — see cheatsheet for guidelines
Viewport set_viewport POST /api/viewport (needs browser)
Export image export_to_image POST /api/export/image (needs browser)
Export URL export_to_excalidraw_url Only via MCP

Read the full file on GitHub · 281 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 281 lines · 148 tokens per session scan A d945a58c6824

Subscribe to this mod's changes

excalidraw-skill is a skill published in the GitHub repository ignizia-code/mcp-excalidraw (2 stars, last pushed 5mo ago), licensed MIT. It adds 148 tokens to every session and 4,157 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens