excalidash-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@excalidash-mcpcreate a flowchart for user login flow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
excalidash-mcp
MCP server that lets Claude (and other MCP clients) create, list, read, update, and delete drawings in ExcaliDash via its REST API.
End state: add one URL to your Claude config and say "畫個 XX 流程圖" — the drawing appears in your ExcaliDash dashboard.
Tools
create_drawing(name, elements?, appState?)→{ id, url, name }update_drawing(id, elements, appState?)list_drawings()→Array<{ id, name, updatedAt, url }>get_drawing(id)→{ id, name, elements, appState, url }delete_drawing(id)
Element JSON is passed straight through to ExcaliDash — use the standard
Excalidraw element format (type, x, y, width, height, etc.).
Related MCP server: Excalidraw MCP Server
Endpoints
POST /mcp— Streamable HTTP MCP endpoint (stateless mode)GET /health— JSON health check (also reports currentauthMode)
Environment
Var | Required | Default | Notes |
| yes |
| Base URL of the ExcaliDash backend (the same host that serves the frontend — the |
| one of two | – | An |
| one of two | – | Fallback email+password login (uses cookie session + CSRF) |
| no |
| HTTP listen port |
The server fail-fasts on startup if no credentials are configured.
Prefer the API key path — it skips ExcaliDash's CSRF/cookie dance entirely
because the backend treats Bearer requests without an Origin/Referer header
as non-browser API requests (see
backend/src/server/csrf.ts
→ isNonBrowserApiKeyBearerRequest).
Claude Desktop / Claude Code config
{
"mcpServers": {
"excalidash": {
"type": "http",
"url": "https://excalidash-mcp.bamolab.org/mcp"
}
}
}For Claude Code, the equivalent CLI:
claude mcp add --transport http excalidash https://excalidash-mcp.bamolab.org/mcpLocal development
npm install
npm run build
EXCALIDASH_API_KEY=exd_... npm startSmoke-test the MCP surface:
curl -s -X POST http://localhost:8080/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jqLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceA Model Context Protocol server that enables LLMs to create, modify, and manipulate Excalidraw diagrams through a structured API.Last updated112,0012,221MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables LLMs to create, modify and manipulate Excalidraw diagrams through a structured API, supporting element creation, styling, organization, and scene management.Last updated123,975MIT
- AlicenseAqualityDmaintenanceA minimal MCP server for AI-driven canvas manipulation and visualization using tldraw. It enables AI clients to programmatically create, update, and manage shapes, flowcharts, and frames on a live interactive canvas.Last updated91MIT
- AlicenseAqualityDmaintenanceMCP server for AI Diagram Maker — generate software engineering diagrams from natural language, code, ASCII diagram, images, or Mermaid. Inline diagram rendering using MCP apps UI and diagram URL in responses. Works with Cursor, Claude Desktop, Claude Code, and any MCP-compatible AI.Last updated5727MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for generating rough-draft project plans from natural-language prompts.
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/asas276203s/excalidash-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server