GitHub Copilot
GitHub Copilot in VS Code can act as an MCP client when run in agent mode. Point it at the Rhino MCP server and Copilot can drive Rhino directly from your editor.
If you’re choosing between assistants and aren’t sure, start with Claude Desktop; it’s the gentler entry point.
Before you start
- The Rhino-MCP-Platform plugin is installed in Rhino. See Getting Started if you haven’t done that yet.
- VS Code 1.99 or newer, with the GitHub Copilot and GitHub Copilot Chat extensions installed and signed in.
- Agent mode is available in Copilot Chat. Open the Chat view and switch the mode selector from Ask to Agent.
Wire up the Rhino server
In Rhino, run the
MCPConnectcommand. It prints the command Copilot needs to launch the Rhino MCP router.In your workspace, create
.vscode/mcp.json(or edit your Usersettings.jsonif you want it available everywhere).Add an entry for the Rhino server, pasting the command and args from step 1:
{ "servers": { "rhino": { "command": "rhino-mcp-router", "args": ["--default-version", "8"] } } }Reload VS Code. In the Copilot Chat agent-mode tool picker, you should see the
rhinoserver and its tools listed.
Pick the Rhino version by changing the
--default-versionarg. Use8for Rhino 8,9for Rhino 9 WIP.
Try it out
Open Copilot Chat in Agent mode and follow the prompts on the Try it out page.