From 40b6ab61e2cc69f6a9ead2f99cc5e7a7697a1baa Mon Sep 17 00:00:00 2001 From: Patrick Rauls Date: Thu, 2 Apr 2026 15:51:25 -0600 Subject: [PATCH 1/2] Fix directory name in README build instructions Update directory name in build instructions. Because the repo name is excalidraw-mcp, git clones the repo to a new `excalidraw-mcp` directory, not `excalidraw-mcp-app`. So the cd command doesn't work out of the box. An alternative approach could be adding excalidraw-mcp-app as the target directory argument in the git clone command. Dealers choice. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad0080f..245cd90 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ For apps that don't yet have an official integration, you can add a custom MCP / ```bash git clone https://github.com/excalidraw/excalidraw-mcp.git -cd excalidraw-mcp-app +cd excalidraw-mcp pnpm install && pnpm run build ``` From 9b9bf62b002469525c388d8a617af7e100501efc Mon Sep 17 00:00:00 2001 From: Patrick Rauls Date: Thu, 2 Apr 2026 15:57:11 -0600 Subject: [PATCH 2/2] Apply suggestion from @patrickrauls also useful to represent the directory name in the config example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 245cd90..b06c18c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`: "mcpServers": { "excalidraw": { "command": "node", - "args": ["/path/to/excalidraw-mcp-app/dist/index.js", "--stdio"] + "args": ["/path/to/excalidraw-mcp/dist/index.js", "--stdio"] } } }