Implement a complete sync architecture overhaul (12 tasks) replacing the flat WebSocket broadcast with scoped, acknowledged delivery: **Backend (server.ts, db.ts, types.ts, index.ts):** - Scoped connection registry: Map<tenant, Map<project, Set<ClientConnection>>> - Hello handshake: WS clients identify tenant/project, server responds with scoped elements - broadcastToScope() replaces global broadcast for element mutations - broadcastWithAck() waits for browser ACK before returning syncedToCanvas status - sync_version: monotonic counter per project, stamped on every mutation - Delta sync v2: POST /api/elements/sync/v2 for incremental sync with version tracking - GET /api/sync/version endpoint - Honest syncedToCanvas + canvasStatus in all mutation responses - Fixed silent try/catch in tenant switch verification **Frontend (App.tsx):** - ACK sending after every updateScene() with element verification - Delta sync v2 integration in syncToBackend() - Gap detection: triggers resync when sync_version gaps are detected - lastSyncVersion tracking via refs + localStorage persistence **Tests (40 new tests, 168 total):** - db.test.ts: +11 tests for sync_version CRUD, scoping, getChangesSince - ws.test.ts: +8 tests for hello handshake, scoped broadcast, ACK model - api.test.ts: +10 tests for sync/v2, sync/version, canvasStatus responses - helpers.test.ts: +11 tests for isImageElement, normalizeImageElement, restoreBindings - canvas.spec.ts: +8 e2e tests including full ACK pipeline verification - Fixed stale tenant state bug in api.test.ts beforeEach Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
5.9 KiB
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
What This Is
A fully local, self-hosted Excalidraw MCP server. Single Node.js process that runs an MCP server (stdio, 32 tools), an embedded Express+WebSocket canvas server, and SQLite persistence with multi-tenancy. Forked from yctimlin/mcp_excalidraw.
Build & Development Commands
# Install dependencies (pnpm preferred, npm works too)
pnpm install
pnpm rebuild better-sqlite3 esbuild
# Full build (frontend + server)
pnpm run build
# Build only server (TypeScript)
pnpm run build:server # npx tsc
# Build only frontend (Vite/React)
pnpm run build:frontend # vite build
# Type check without emit
pnpm run type-check # npx tsc --noEmit
# Dev mode (watch server + Vite dev server on :5173)
pnpm run dev
# Run the MCP server (starts MCP stdio + canvas on :3000)
node dist/index.js
# Run canvas server standalone
node dist/server.js
# Health check
curl http://localhost:3000/health
There are no unit tests. Validation is done via type checking (pnpm run type-check) and build verification. The CI runs type-check then build across Node 18/20/22.
Architecture
Single process, three subsystems:
src/index.ts ── MCP Server (stdio) ── 32 tools, connects to canvas via HTTP
├── imports server.ts ── Canvas Server (Express + WebSocket on CANVAS_PORT)
├── imports db.ts ── SQLite layer (better-sqlite3, WAL mode)
└── imports types.ts ── Shared types, element validation, ID generation
frontend/ ── React + Excalidraw UI (Vite build → dist/frontend/)
├── src/App.tsx ── Main component, WS connection, auto-sync, workspace switcher
└── src/main.tsx ── Entry point
Data flow: MCP tool call → index.ts handler → HTTP to canvas REST API (server.ts) → SQLite (db.ts) + WebSocket broadcast → frontend updates.
Key design decisions:
- Canvas server is embedded in the MCP process —
startCanvasServer()is called fromrunServer(). If port is taken by an existing healthy instance, it reuses it instead of crashing. - Multi-tenancy: workspace path → SHA-256 hash (12 chars) → tenant ID. Each tenant has isolated projects/elements. Tenant auto-detected via
server.listRoots()after MCP connection. - All element data stored as JSON blobs in SQLite
elements.datacolumn. FTS5 virtual table for full-text search on labels. - Logging goes to file (
excalidraw.log) at debug level, only warn+error to stderr (to avoid breaking stdio JSON protocol).
Source Files
| File | Purpose |
|---|---|
src/index.ts (~2540 lines) |
MCP server entry point. Tool definitions, tool handlers, tenant bootstrap, server lifecycle. |
src/server.ts (~1155 lines) |
Express canvas server. REST API, WebSocket, Zod schemas, arrow binding resolution, image export relay. |
src/db.ts (~510 lines) |
SQLite persistence. Migrations, CRUD, FTS, versioning, snapshots, tenants, projects. |
src/types.ts (~315 lines) |
TypeScript interfaces for elements, WebSocket messages, API responses. generateId() and validateElement(). |
src/utils/logger.ts |
Winston logger config (file + stderr). |
frontend/src/App.tsx |
React Excalidraw wrapper with WS sync, auto-sync, workspace switcher. |
vite.config.js |
Frontend build config. Root=frontend/, output=dist/frontend/. Dev proxy to :3000. |
Environment Variables
| Variable | Default | Notes |
|---|---|---|
CANVAS_PORT |
3000 |
Canvas server port |
EXCALIDRAW_DB_PATH |
~/.excalidraw-mcp/excalidraw.db |
SQLite database location |
EXCALIDRAW_EXPORT_DIR |
process.cwd() |
Allowed directory for file exports (path traversal protection) |
EXPRESS_SERVER_URL |
http://localhost:{CANVAS_PORT} |
Only needed if running canvas separately |
LOG_FILE_PATH |
excalidraw.log |
Winston log file |
LOG_LEVEL |
info |
Winston log level |
TypeScript Configuration
- ESM modules (
"type": "module"in package.json,"module": "ESNext"in tsconfig) - Strict mode enabled with
noUncheckedIndexedAccess - Target ES2022, output to
dist/ - All
.jsimports in source use.jsextension (ESM requirement)
Key Patterns
- Canvas sync is fire-and-forget: MCP tool handlers call canvas REST API but don't fail if canvas is unavailable. The
syncToCanvas()helper catches errors and returns null. - Tenant-scoped operations: Every REST endpoint resolves tenant via
X-Tenant-Idheader →resolveTenantProject()→ project ID. Browser requests (no header) fall back to global active state. - Arrow binding:
startElementId/endElementIdon arrows are resolved to edge-point coordinates inresolveArrowBindings()(server.ts). The server computes intersection points for rectangle/ellipse/diamond shapes. - Image export relay: MCP → REST
/api/export/image→ WebSocket broadcast → frontend renders → POST back to/api/export/image/result→ resolves pending promise. - Element versioning: Every create/update/delete records a version in
element_versionstable. Soft-delete pattern (is_deletedflag).
Docker
Two Dockerfiles: Dockerfile (MCP server only), Dockerfile.canvas (canvas with frontend). docker-compose.yml orchestrates both with a full profile.
Code Search Optimization
When exploring or understanding code in supported languages (JS, TS, Python, Go, Rust, Java, C, C++, Ruby):
- Use
smart_search(query, path)instead of Grep+Glob chains for discovering functions/classes/symbols - Use
smart_outline(file_path)instead of Read to understand file structure (~1-2K tokens vs ~12K+) - Use
smart_unfold(file_path, symbol_name)instead of Read for viewing specific functions (~400-2K tokens) - Fall back to Grep for exact string/regex searches, Read for non-code files and files under 100 lines