claude-monet-mcp
A lightweight sketch canvas that lets users draw ideas and sync them in real-time to AI via MCP, enabling visual communication without exports.
README
<p align="center"> <img src="src/public/claude-monet-mcp-bg.webp" alt="Claude Monet MCP" width="400"> </p>
<p align="center"> <em>Let your ideas flow in strokes, not keystrokes.</em> </p>
<p align="center"> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a> <a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node.js-18+-green.svg" alt="Node.js"></a> <a href="https://modelcontextprotocol.io/"><img src="https://img.shields.io/badge/MCP-Compatible-purple.svg" alt="MCP Compatible"></a> </p>
What is this?
- π¨ Visual thinking, amplified - Some ideas are easier to draw than describe. Sketch freely and let AI see what you mean.
- β¨ Beautifully simple - A lightweight canvas that does one thing well: bridge your imagination to AI understanding.
- π Instant connection - Your strokes flow to AI in real-time via MCP. No exports, no uploadsβjust draw.
<p align="center"> <img src="src/public/demo.gif" alt="Claude Monet MCP Demo" width="800"> </p>
Quick Add
<img src="https://cdn.simpleicons.org/anthropic/D97757" height="20" align="center"> Claude Code
claude mcp add claude-monet -- npx -y claude-monet-mcp
<img src="https://cdn.simpleicons.org/anthropic/D97757" height="20" align="center"> Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"claude-monet": {
"command": "npx",
"args": ["-y", "claude-monet-mcp"]
}
}
}
<img src="https://cdn.simpleicons.org/cursor/000000" height="20" align="center"> Cursor
Add to your Cursor MCP settings (Cursor Settings β Features β Model Context Protocol):
{
"mcpServers": {
"claude-monet": {
"command": "npx",
"args": ["-y", "claude-monet-mcp"]
}
}
}
[!TIP] After adding the server, restart Claude Desktop/Code/Cursor to load the MCP tools.
Manual Installation
If you prefer to run from source:
Prerequisites
- Node.js 18+
- pnpm (or npm)
Install and Build
# Clone the repository
git clone https://github.com/yahavfuchs/claude-monet-mcp.git
cd claude-monet-mcp
# Install dependencies
pnpm install
# Build the React app
pnpm run build
[!IMPORTANT] Run
pnpm run buildbefore starting the server for the first time.
Start the Server
pnpm start
The web interface will be available at http://localhost:51423
Configure MCP
Add to your MCP settings:
{
"mcpServers": {
"claude-monet": {
"command": "node",
"args": ["/path/to/claude-monet-mcp/server.js"]
}
}
}
Usage
- Start the server - Run
pnpm startor usenpx claude-monet-mcp - Open the canvas - Navigate to
http://localhost:51423in your browser - Draw your idea - Use Excalidraw tools to sketch rectangles, circles, arrows, text, or freehand
- Ask Claude - "Can you see my sketch? What do you think?"
[!TIP] Keep the browser tab open while chatting with Claude. Your drawings sync in real-time.
Perfect for:
- Explaining UI layouts visually
- Sketching architecture diagrams
- Wireframing ideas quickly
- Visual communication with Claude
MCP Tools
| Tool | Description |
|---|---|
get_sketch |
Returns the current sketch as SVG text |
clear_sketch |
Clears the canvas to start fresh |
Example:
Claude receives SVG like:
<svg>
<rect x="100" y="50" width="200" height="100"/>
<text x="150" y="100">Header</text>
</svg>
Claude understands: "A rectangle labeled 'Header' - this is a header component"
Why SVG instead of images?
- Text-based - Claude reads SVG paths directly, no vision model needed
- Smaller - No base64 encoding overhead
- Accurate - Exact coordinates, no compression artifacts
- Simpler - Just strings, no blob conversion
Development
# Development mode (Vite dev server)
pnpm run dev
# Build for production
pnpm run build
# Start MCP server
pnpm start
# Build and start together
pnpm run dev:full
Project Structure
claude-monet-mcp/
βββ server.js # MCP server + Express (~104 lines)
βββ src/
β βββ App.jsx # Excalidraw React app (~80 lines)
β βββ App.css # Styling (~28 lines)
β βββ main.jsx # React entry point
β βββ index.html # HTML template
β βββ public/ # Logo assets
βββ dist/ # Built output (from Vite)
βββ vite.config.js # Build configuration
βββ package.json
Why build this?
Existing Excalidraw MCP servers are complex (~2000+ lines) and focused on "Claude creates diagrams". This tool is minimal and focused on "user sketches β Claude reads".
Acknowledgements
Built with excellent open-source technologies:
- Excalidraw - Beautiful hand-drawn canvas
- Model Context Protocol - Protocol for AI tool integration
- Express - Fast, minimalist web framework
- Vite - Next generation frontend tooling
- React - JavaScript library for building user interfaces
Contributing
Contributions welcome! This project is intentionally simple to encourage contributions.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.