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 "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 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: HoudiniMCP
🛠️ 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.60
- AlicenseNot gradedqualityDmaintenanceConnects Claude AI to Houdini through the Model Context Protocol, enabling direct interaction and control for 3D modeling, scene creation, simulation, and rendering.20MIT
- 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 gradedqualityCmaintenanceEnables AI assistants and CLI tools to read and control Houdini scenes with a safety model that separates read and write operations.MIT
Related MCP Connectors
Let your AI sessions talk to each other — messaging, tasks, sessions, and alerts
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Connects AI assistants to QCDatabase.AI for everyday construction quality-control work.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/bennyjoel/-Houdini-MCP-'
If you have feedback or need assistance with the MCP directory API, please join our Discord server