Enables programmatic control of SideFX Houdini, providing tools for node operations, parameter editing, geometry inspection, scene management, and arbitrary Python or HScript execution.
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 MCP Servercreate a sphere node in /obj and set its radius to 5"
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 Server
Control SideFX Houdini from AI assistants via the Model Context Protocol.
35 tools for node creation, parameter editing, geometry inspection, scene management, and arbitrary Python execution — all driven by natural language through Claude or any MCP-compatible client.
Features
Node operations — create, delete, rename, connect, layout, cook, find nodes
Parameter control — get/set values, list parameters, set expressions
Geometry inspection — read points, primitives, bounding boxes, export
.geoScene management — new/open/save scenes, scene info
Transform tools — get/set object transforms
Code execution — run arbitrary Python or HScript inside Houdini
Built-in documentation — 11 comprehensive HOM reference docs + 5 index files, searchable via MCP tools
Prerequisites
Setup
1. Start RPYC server in Houdini
Open Houdini's Python Shell (Windows > Python Shell) and run:
import hrpyc
hrpyc.start_server(port=18811)Or use the provided helper script:
exec(open("/path/to/houdini-mcp/houdini_setup.py").read())2. Configure your MCP client
Add to your MCP client configuration (e.g., .mcp.json for Claude Code):
{
"mcpServers": {
"houdini": {
"command": "uv",
"args": ["--directory", "/path/to/houdini-mcp", "run", "server.py"]
}
}
}Replace /path/to/houdini-mcp with the actual path to this repo.
3. Connect
Call the houdini_connect tool first. Then use any of the 35 available tools.
Claude Code Skill (Optional)
The claude-skill/ directory contains a Houdini Python reference skill for Claude Code. To use it:
Copy
claude-skill/houdini-python.mdto your project's.claude/commands/directoryThe skill provides HOM API reference, SOP/DOP/VOP node guides, and scripting patterns
Invoke with
/houdini-pythonin Claude Code
Tools
Category | Tools |
Connection |
|
Scene |
|
Nodes |
|
Parameters |
|
Geometry |
|
Transforms |
|
Execution |
|
Frame |
|
How it works
┌──────────────┐ MCP (stdio) ┌──────────────┐ RPYC (TCP) ┌──────────────┐
│ AI Client │ ◄─────────────────► │ MCP Server │ ◄────────────────► │ Houdini │
│ (Claude etc) │ │ (server.py) │ │ (port 18811)│
└──────────────┘ └──────────────┘ └──────────────┘The MCP server translates tool calls into RPYC remote procedure calls to Houdini's Python interpreter. Houdini runs an RPYC server (via hrpyc) that exposes the full hou module.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.