Rhino MCP
Claude controls Rhino 3D
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp rhino-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "Rhino MCP", 3 "summary": "Claude controls Rhino 3D for prompt-assisted modeling", 4 "repo": "https://github.com/jingcheng-chen/rhinomcp", 5 "mcpServers": { 6 "rhino": { 7 "command": "uvx", 8 "args": ["rhinomcp"] 9 }10 },11 "postInstallNotes": "Also install the 'rhinomcp' plugin inside Rhino: Tools > Package Manager > search 'rhinomcp' > Install. Then run 'mcpstart' in the Rhino command line."12}13