Houdini MCP
Provides tools for interacting with a live Houdini session, enabling AI agents to create nodes, wire networks, query scene data, simulate physics, modify parameters, and execute Python/HScript directly in the scene.
Click on "Deploy 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 MCPMake the sphere at /obj/geo1/sphere1 5 times bigger."
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
A Model Context Protocol (MCP) server that seamlessly bridges AI assistants (like Claude, Cursor, Antigravity, and Codecs) directly to a live Houdini Indie/FX session.
This allows your AI to directly act as a Technical Director (TD): creating nodes, wiring networks, querying scene data, simulating physics, and modifying parameters in real-time.
🚀 Features
20+ Built-in Tools: Read parameters, create nodes, wire VOPs/SOPs, capture errors, save
.hipfiles, etc.Advanced Python/HScript Execution: Provides an escape hatch for the AI to run raw Python against the Houdini Object Model (
hou).Fully Local: Communicates over
stdioand127.0.0.1. No proprietary scene data leaves your machine.
Related MCP server: Houdini MCP Server
🛠️ 1. Installation
Houdini uses an internal Python environment, but our MCP server runs externally. We need to install the bridge dependencies.
Clone or download this repository.
Double-click
setup.bat(Windows).This will automatically find your Python 3 installation, create a
.venvvirtual environment, and installfastmcpandrpyc==4.1.0(which matches Houdini's internal RPyC version).
(Note: If you are doing this manually, simply run pip install fastmcp rpyc==4.1.0)
🎩 2. Houdini Setup
You must tell your open Houdini session to listen for the AI's commands. There are two ways to do this:
Option A: Automatic Startup (Recommended)
You can configure Houdini to automatically start the AI connection in the background every time it launches so you never have to do it manually.
Go to your Houdini preferences folder (e.g.,
Documents/houdini21.0/orDocuments/houdini19.5/).Open or create the
scriptsfolder.Inside
scripts, create a file namedpythonrc.pyand add this code:# Start hrpyc server for AI MCP integration try: import hrpyc hrpyc.start_server(port=18811) print("[Houdini MCP] hrpyc listener successfully started on port 18811") except Exception: pass
Option B: Manual Startup
If you only want to run the connection when you explicitly need it:
Open Houdini (Indie, FX, or Core).
Go to Windows > Python Shell (or press
Alt + Shift + P).Paste the following snippet and hit Enter:
import hrpyc hrpyc.start_server(port=18811)
🤖 3. Connecting to your AI (Client Setup)
You need to register this server with your MCP-compatible AI host. You will need the absolute paths to both the Python executable in the .venv and the houdini_mcp_server.py script.
🔹 For Claude Desktop
Open your Claude Desktop configuration file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonMac:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the server:
{
"mcpServers": {
"houdini": {
"command": "C:\\path\\to\\-Houdini-s-MCP-\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\-Houdini-s-MCP-\\houdini_mcp_server.py"]
}
}
}🔹 For Cursor / Cline
Open Cursor Settings > Features > MCP Servers.
Click + Add New MCP Server.
Name:
HoudiniType:
commandCommand:
"C:\path\to\-Houdini-s-MCP-\.venv\Scripts\python.exe" "C:\path\to\-Houdini-s-MCP-\houdini_mcp_server.py"
🔹 For Antigravity
Open ~/.gemini/config/mcp_config.json and add the same JSON block as the Claude Desktop example above.
📝 Example Prompts to try with your AI
Once connected, try asking your AI:
"What is the current frame range of my open Houdini scene?"
"Create a procedural house out of a box and a tube, boolean them together, and drop them into an RBD bullet solver."
"Find all nodes in my network that currently have cooking errors and tell me what the errors are."
"Make the sphere at /obj/geo1/sphere1 5 times bigger."
Built with FastMCP and RPyC.
This server cannot be deployed
Maintenance
Related MCP Connectors
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceConnects Houdini to Claude AI through Model Context Protocol, enabling AI-assisted 3D modeling, scene creation, simulation setup, and rendering through natural language commands.59-
- AlicenseNot gradedqualityDmaintenanceEnables AI-assisted 3D content creation by allowing Claude Code to control SideFX Houdini directly, including creating nodes, setting parameters, executing HScript commands, and building complex procedural networks.13MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants and CLI tools to read and control Houdini scenes with a safety model that separates read and write operations.MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to control Houdini by executing Python code, querying scene information, and creating nodes via the Model Context Protocol.2-