Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,32 @@ For apps that don't yet have an official integration, you can add a custom MCP /
1. Download `excalidraw-mcp-app.mcpb` from [Releases](https://github.com/antonpk1/excalidraw-mcp-app/releases)
2. Double-click to install in Claude Desktop

**Option B: Build from Source**
**Option B: npm (for Claude Code CLI and other stdio-based MCP clients)**

```bash
npm install -g excalidraw-mcp
```

Then add to your `~/.claude.json` (for Claude Code) or `~/.mcp.json` (for other clients):

```json
{
"mcpServers": {
"excalidraw": {
"type": "stdio",
"command": "excalidraw-mcp",
"args": ["--stdio"]
}
}
}
```

Or via CLI:
```bash
claude mcp add excalidraw --scope user -- excalidraw-mcp --stdio
```

**Option C: Build from Source**

```bash
git clone https://github.com/excalidraw/excalidraw-mcp.git
Expand Down