Houdini MCP
Allows AI agents to directly control SideFX Houdini, including creating and modifying nodes, setting parameters, executing Python scripts, capturing viewports, rendering frames, managing scenes, and performing health diagnostics and multi-instance pooling.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Houdini MCPcreate a sphere node and set its radius to 2"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Houdini MCP
MCP server that lets AI agents (Claude Code, Cursor, etc.) directly control SideFX Houdini — create nodes, set parameters, execute Python, capture viewports, render frames, and more.
Built on Model Context Protocol + RPyC. Supports multi-instance, instance pooling, and includes a WebUI dashboard.
Features
57 MCP tools covering scene, nodes, parameters, geometry, rendering, viewport, and more
Multi-instance — run multiple Houdini sessions on different ports simultaneously
Instance pooling — pre-warm idle Houdini instances, acquire on demand, skip the startup wait
Health diagnostics — detect hung/busy/dead Houdini via Win32 API + RPyC ping (never hangs)
WebUI dashboard — manage sessions, configuration, startup scripts, and tool toggles from a browser
Auto-discovery — MCP server finds running Houdini instances automatically
Non-destructive setup — startup hook is a single line in
456.py, fully reversible
Related MCP server: Blender MCP Server
Requirements
Windows (Win32 APIs used for screen capture and process diagnostics)
Python 3.11+
SideFX Houdini 20.5+ (tested with 20.5 and 21.0)
Quick Start
1. Install
git clone https://github.com/OtakuSquirrel/houdini-mcp.git
cd houdini-mcp
# Option A: run install.bat (creates venv + installs everything)
install.bat
# Option B: manual
python -m venv .venv
.venv\Scripts\activate
pip install -e ".[webui]"2. Configure your MCP client
Add to your Claude Code project settings (.claude/settings.local.json):
{
"mcpServers": {
"houdini": {
"command": "D:/path/to/houdini-mcp/.venv/Scripts/python.exe",
"args": ["-m", "houdini_mcp"],
"cwd": "D:/path/to/houdini-mcp"
}
}
}3. Start working
The first time an agent calls a Houdini tool, the MCP server will:
Auto-install the startup hook into your Houdini prefs (one-time, non-destructive)
Launch Houdini and wait for RPyC to be ready
Connect and start executing tool calls
No manual setup needed. Just ask your AI agent to do something in Houdini.
WebUI Dashboard
# Start the dashboard
Windows_webui.bat
# or manually:
.venv\Scripts\python.exe -m houdini_mcp.webui --port 9800Dashboard — sessions, ports, processes at a glance

HouConfig — port range, search paths, startup hook injection

MCP Tools — enable/disable tools per category

AgentConfig — generate MCP client config for Claude Code, Cursor, etc.

Instance Pooling
Houdini takes 11-37 seconds to start. The pool tools let you pre-warm instances:
warm_pool([{"count": 3}]) # Launch 3 idle Houdini instances
get_pool_status() # → 3 idle, 0 active
acquire_from_pool() # → Grab one, now 2 idle, 1 active
disconnect_houdini() # → Release back to idle pool
# When Houdini freezes:
is_houdini_healthy() # → verdict: "hung", CPU 0%
adopt_idle() # → Kill frozen instance, grab an idle oneAvailable Tools (57)
Category | Tools | Description |
Scene (4) |
| Create, open, save scenes |
Nodes (5) |
| Build and inspect node graphs |
Parameters (3) |
| Read/write node parameters |
Connections (3) |
| Wire node inputs/outputs |
Execution (3) |
| Run Python in Houdini, cook nodes |
Geometry (3) |
| Inspect points, prims, attributes |
Viewport (2) |
| Capture and configure viewport |
Render (2) |
| Render via ROP or quick OpenGL preview |
Verification (3) |
| Compare images, diff scene states |
Lifecycle (8) |
| Launch, stop, pool, health check |
Sessions (13) |
| Pool management, multi-instance |
Screen (4) |
| Window capture, process status |
Events (4) |
| Node operation event tracking |
How It Works
AI Agent ←(stdio)→ MCP Server ←(RPyC/TCP)→ Houdini
↕
WebUI DashboardMCP Server starts idle. On first tool call, it auto-discovers a Houdini RPyC listener on the configured port range (default 18811-18899) and connects.
Houdini runs a startup hook (
456.py) that callshrpyc.start_server()to expose the fullhoumodule over RPyC.WebUI is a separate FastAPI app that reads the shared config and session registry at
~/houdini_mcp/.
Troubleshooting
Houdini not connecting — Run install_startup_scripts() or use the WebUI Config page, then restart Houdini.
Port conflicts — Use scan_ports() or the WebUI Dashboard to see port status. Run cleanup_stale_sessions() to remove dead entries.
RPyC version mismatch — This project requires rpyc>=4.1,<5. Houdini ships RPyC 4.x internally. RPyC 6.x is incompatible.
Viewport screenshot fails — Requires GUI mode. Does not work with hython (headless).
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OtakuSquirrel/houdini-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server