Houdini MCP
Enables AI assistants to connect directly to a live Houdini session and act as a technical director by creating nodes, wiring networks, querying scene data, running Python/HScript, and modifying parameters in real time.
README
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.
🛠️ 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).
- This will automatically find your Python 3 installation, create a
(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.json - Mac:
~/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:
Houdini - Type:
command - Command:
"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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.