01
Create a scoped token
Create an account, verify the email, then mint a Personal Access Token with read and write capabilities in Settings → Developer. Add delete only if you intentionally want the agent to use reversible trash/restore tools.
Excalidraw MCP · persistent workflow
Connect an MCP-capable agent to a persistent Excalidraw workspace. Let the agent create the first system map, refine the same canvas in the browser, then send a targeted update back through the agent.
01
Input
Defined scope
02
Agent
First draft
03
Canvas
Stable URL
04
Human
Review + edit
05
Agent
Same-canvas update
The useful unit is not the generated image. It is one diagram with a stable URL, editable elements, human review, and programmatic follow-up.
Product boundary: Excaliwow is built on the open-source Excalidraw editor and is not affiliated with or endorsed by Excalidraw. The open-source Excalidraw project has a separate MCP server, and Excalidraw+ has its own API and MCP surfaces in public beta. This page documents Excaliwow’s persistent workspace workflow.
Reproduce it
01
Create an account, verify the email, then mint a Personal Access Token with read and write capabilities in Settings → Developer. Add delete only if you intentionally want the agent to use reversible trash/restore tools.
02
For Claude Code, export the token before adding the local server so the literal token does not land on the command line stored in shell history.
Terminal
export EXCALIWOW_TOKEN=excw_pat_…
claude mcp add excaliwow \
--scope local \
--env EXCALIWOW_TOKEN="$EXCALIWOW_TOKEN" \
-- npx -y @excaliwow/mcp03
Claude Desktop and other JSON-config clients can launch the same stdio server through npx. Keep the real token in local settings or a secrets manager, never in a repository.
MCP client config
{
"mcpServers": {
"excaliwow": {
"command": "npx",
"args": ["-y", "@excaliwow/mcp"],
"env": {
"EXCALIWOW_TOKEN": "excw_pat_…"
}
}
}
}Human review
Same-canvas follow-up
Update the same diagram in place with the reviewed relationship, preserving every human edit and existing element id.
Start free—no credit card. First 10,000 verified accounts keep the core workspace free; 3 diagrams to start and earn more capacity.