Skip to content

Set Up & Verify

This page is written to be handed to your AI agent. After you’ve run the installer and restarted Rhino, paste the block below into Claude Code (or your MCP-capable assistant) and let it confirm everything is wired up — the start of working with Rook agent-first.

For a full post-install check your agent can run end-to-end, see Post-Install Agent Setup.

That’s it — your agent will tell you whether Rook is healthy and walk you through any gaps. The rest of this page explains what those checks mean.

Rook reaches your assistant through an MCP server named rook. When you run /mcp (or your agent lists its servers), rook should appear. If it’s missing, the MCP configuration wasn’t registered — re-run the installer, or see Claude Code & Desktop for manual setup.

Don’t treat the tool count as the test. Rook ships hundreds of tools, but the active profile may advertise a compact set and reach the rest through rook_tools_search / rook_tools_call. The reliable check is whether rhino_ping can be called at all.

rhino_ping returns pong when the assistant can reach the RookNative plugin running inside Rhino. This only works when:

  • Rhino 8 is running
  • The RookNative plugin is loaded (run ShowRookChat in Rhino to confirm)

The plugin binds to an OS-assigned port and writes a discovery file to %LOCALAPPDATA%\Rook\discovery\ (older builds used %TEMP%\rook\, which is still read for compatibility); the MCP server reads it to find Rhino. If Rhino was moved, reinstalled, or hard-killed, that file can go stale — restarting Rhino rewrites it.

A ping that hangs rather than erroring means something different: Rhino is showing a modal dialog and its UI thread is blocked. Only you can dismiss it, by switching to the Rhino window.

Creating a sphere and reading it back exercises the full stack:

your agent → MCP server (Python) → HTTP bridge → RookNative (C++) → Rhino

If the sphere appears, every layer is working.

Asking for rhino_document first is deliberate: it reports the document’s units (so radius 5 means what you expect) and its object count, which is what step 6 checks the cleanup against. It also warns the agent if you’re running this against a document with real work in it.

gh_status reports whether the Grasshopper side is live, along with the assembly version and canvas state. If Grasshopper simply isn’t open, it returns available: false with Grasshopper assembly is not loaded — that’s expected, not an install problem. Open Grasshopper and run it again.

Grasshopper is bridged by a separate managed companion, so a genuine failure here (Grasshopper open, still unavailable) is independent of the Rhino bridge passing.

Skills like /design-grasshopper and /chirp come from the Rook marketplace plugin (Plugin Overview), not the MCP server. If your agent has the tools but not the skills, the plugin isn’t installed yet — run /plugin marketplace add bringfire/rook-release then /plugin install rook@rook in Claude Code.

Codex users: the curated skills are delivered by the installer to ~/.codex/skills — no marketplace step needed.

SymptomLikely causeFix
rook not in the MCP listMCP config missing or wrong pathRe-run the installer, or add it manually (Claude Code)
rhino_ping errorsRhino not running, or plugin not loadedStart Rhino 8; run ShowRookChat to confirm the plugin
”Connection refused”Plugin port not discoveredCheck %LOCALAPPDATA%\Rook\discovery\ (or legacy %TEMP%\rook\) for discovery JSON files; restarting Rhino rewrites them
Tools hang instead of erroringRhino is showing a modal dialogSwitch to the Rhino window and dismiss the dialog, then retry
gh_status returns available: falseGrasshopper isn’t open (assembly not loaded)Open Grasshopper in Rhino, then retry — this is not an install failure
Geometry lands in the wrong documentMore than one Rhino window is openCall rhino_sessions and bind the intended one with rhino_set_active_instance
Tools work but no skillsMarketplace plugin not installed (Claude Code)Run /plugin marketplace add bringfire/rook-release then /plugin install rook@rook — see Plugin Overview

Once everything passes, head to Your First Conversation — or skim the Skills That Ship to see what you can ask for.