From f4d1a4a31b177383f8c7caa68c3f054d7ebd226b Mon Sep 17 00:00:00 2001 From: Harry Wang Date: Sun, 30 Mar 2025 10:42:37 -0400 Subject: [PATCH 1/3] updated Cursor integration instruction --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 116cce7..63ac63f 100644 --- a/README.md +++ b/README.md @@ -89,10 +89,24 @@ Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json t ### Cursor integration -Run blender-mcp without installing it permanently through uvx. Go to Cursor Settings > MCP and paste this as a command. +For Mac users, go to Settings > MCP and paste the following -```bash -uvx blender-mcp +- To use as a global server, use "add new global MCP server" button and paste +- To use as a project specific server, create `.cursor/mcp.json` in the root of the project and past + + +```json +{ + "mcpServers": { + "blender": { + "command": "command", + "args": [ + "uvx", + "blender-mcp" + ] + } + } +} ``` For Windows users, go to Settings > MCP > Add Server, add a new server with the following settings: @@ -112,7 +126,6 @@ For Windows users, go to Settings > MCP > Add Server, add a new server with the } ``` - [Cursor setup video](https://www.youtube.com/watch?v=wgWsJshecac) **⚠️ Only run one instance of the MCP server (either on Cursor or Claude Desktop), not both** From 6cc933f28521977f91b852472f61ea530885e397 Mon Sep 17 00:00:00 2001 From: Harry Wang Date: Sun, 30 Mar 2025 10:45:24 -0400 Subject: [PATCH 2/3] fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63ac63f..0c4e83f 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json t For Mac users, go to Settings > MCP and paste the following - To use as a global server, use "add new global MCP server" button and paste -- To use as a project specific server, create `.cursor/mcp.json` in the root of the project and past +- To use as a project specific server, create `.cursor/mcp.json` in the root of the project and paste ```json From bdaa01cd14a455f9be72dd6412922a175cf8ec3a Mon Sep 17 00:00:00 2001 From: Harry Wang Date: Thu, 10 Apr 2025 14:02:59 -0400 Subject: [PATCH 3/3] updated the command --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c4e83f..a44abe6 100644 --- a/README.md +++ b/README.md @@ -99,9 +99,8 @@ For Mac users, go to Settings > MCP and paste the following { "mcpServers": { "blender": { - "command": "command", + "command": "uvx", "args": [ - "uvx", "blender-mcp" ] }