claude-monet-mcp 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  <p align="center">
2
- <img src="src/public/claude-monet-mcp-with-text.webp" alt="Claude Monet MCP" width="400">
2
+ <img src="src/public/claude-monet-mcp-bg.webp" alt="Claude Monet MCP" width="400">
3
3
  </p>
4
4
 
5
5
  <p align="center">
6
- <em>Give Claude eyes to see your sketches. Draw in Excalidraw, Claude reads the SVG.</em>
6
+ <em>Let your ideas flow in strokes, not keystrokes.</em>
7
7
  </p>
8
8
 
9
9
  <p align="center">
@@ -16,21 +16,25 @@
16
16
 
17
17
  ## What is this?
18
18
 
19
- * :art: **Visual Input for Claude** - Sketch UI layouts, flows, and ideas visually instead of describing them in text. Claude receives your drawing as SVG and understands your visual intent.
20
- * :zap: **Minimal & Focused** - Just ~200 lines of code. This is NOT a diagram generator - it's visual input for Claude.
21
- * :rocket: **Real-time Sync** - Draw with Excalidraw's hand-drawn style canvas, changes sync instantly to Claude via MCP.
19
+ * 🎨 **Visual thinking, amplified** - Some ideas are easier to draw than describe. Sketch freely and let AI see what you mean.
20
+ * **Beautifully simple** - A lightweight canvas that does one thing well: bridge your imagination to AI understanding.
21
+ * 🔄 **Instant connection** - Your strokes flow to AI in real-time via MCP. No exports, no uploads—just draw.
22
+
23
+ <p align="center">
24
+ <img src="src/public/demo.gif" alt="Claude Monet MCP Demo" width="800">
25
+ </p>
22
26
 
23
27
  ---
24
28
 
25
29
  ## Quick Add
26
30
 
27
- ### Claude Code
31
+ ### <img src="https://cdn.simpleicons.org/anthropic/D97757" height="20" align="center"> Claude Code
28
32
 
29
33
  ```bash
30
34
  claude mcp add claude-monet -- npx -y claude-monet-mcp
31
35
  ```
32
36
 
33
- ### Claude Desktop
37
+ ### <img src="https://cdn.simpleicons.org/anthropic/D97757" height="20" align="center"> Claude Desktop
34
38
 
35
39
  Add to your `claude_desktop_config.json`:
36
40
 
@@ -45,8 +49,23 @@ Add to your `claude_desktop_config.json`:
45
49
  }
46
50
  ```
47
51
 
52
+ ### <img src="https://cdn.simpleicons.org/cursor/000000" height="20" align="center"> Cursor
53
+
54
+ Add to your Cursor MCP settings (`Cursor Settings` → `Features` → `Model Context Protocol`):
55
+
56
+ ```json
57
+ {
58
+ "mcpServers": {
59
+ "claude-monet": {
60
+ "command": "npx",
61
+ "args": ["-y", "claude-monet-mcp"]
62
+ }
63
+ }
64
+ }
65
+ ```
66
+
48
67
  > [!TIP]
49
- > After adding the server, restart Claude Desktop/Code to load the MCP tools.
68
+ > After adding the server, restart Claude Desktop/Code/Cursor to load the MCP tools.
50
69
 
51
70
  ---
52
71
 
Binary file
package/dist/demo.gif ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-monet-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server that gives Claude 'eyes' - sketch in Excalidraw, Claude reads the SVG",
5
5
  "type": "module",
6
6
  "main": "server.js",