forked from excalidraw/excalidraw-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.64 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"manifest_version": "0.3",
"name": "excalidraw-mcp-app",
"display_name": "Excalidraw",
"version": "0.3.2",
"description": "Hand-drawn diagrams with streaming animations, fullscreen editing, checkpoint/restore, and one-click export to excalidraw.com.",
"long_description": "An MCP App server that renders Excalidraw diagrams with hand-drawn style. Features streaming SVG rendering with draw-on animations, smooth viewport camera panning, label binding, interactive fullscreen editing with export to excalidraw.com, checkpoint/restore for iterative edits, and screenshot context sent back to Claude for feedback.",
"author": {
"name": "Anton Pidkuiko",
"url": "https://github.com/antonpk1"
},
"repository": {
"type": "git",
"url": "https://github.com/antonpk1/excalidraw-mcp-app.git"
},
"homepage": "https://github.com/antonpk1/excalidraw-mcp-app",
"icon": "docs/logo.png",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/dist/index.js", "--stdio"]
}
},
"tools": [
{
"name": "read_me",
"description": "Returns the Excalidraw element format reference with color palettes, examples, and tips. Call this before using create_view."
},
{
"name": "create_view",
"description": "Renders a hand-drawn diagram using Excalidraw elements with streaming draw-on animations."
}
],
"keywords": ["excalidraw", "diagrams", "drawing", "visualization", "mcp-app"],
"compatibility": {
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
}
},
"license": "MIT"
}