MCP server for Cinema 4D โ entity CRUD, parameter-level access, batched undo, security controls.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Let an LLM drive Cinema 4D. mcp-cinema4d bridges MCP-compatible clients (Claude Desktop, Claude Code, or any other stdio-capable MCP client) to a running Cinema 4D 2026 session so the model can inspect scene hierarchy, author shots, build node materials, and rig animation through a typed, undo-safe tool layer โ not arbitrary Python pasted into a Script Manager.
Good for:
hero layer; flag any with non-uniform scale or missing Texture tags."[!CAUTION] Do not proceed unless you understand what this does. An LLM with a live connection to Cinema 4D can read your scene, write to it, and (if you opt in) execute arbitrary code on your machine. In concrete terms:
- Your scene data leaves your machine. Object names, hierarchy paths, material/parameter values, imported file paths โ whatever the LLM reads via
list_entities/describe/get_container/dump_shader/get_meshโ is forwarded to your chosen LLM provider and may be logged by your MCP client. Under NDA or on unreleased IP? Confirm with your studio/legal team first that the provider's retention policy and your client's logs are acceptable.- The LLM gets write access. It can create, mutate, and delete objects, tags, materials, takes, render data, and layers; import / merge / open / save files; and render. Ctrl/Cmd-Z covers most edits โ
save_document,open_document,render, and somecall_commandinvocations do not.- Arbitrary Python is off by default.
exec_pythonruns unrestricted code with the full authority of the Cinema 4D process (file I/O, subprocess, network). Enabled only whenC4D_MCP_ENABLE_EXEC_PYTHON=1is set on both sides; turn it back off when you no longer need it. The same applies to plugin types that store Python source in their container โ Python tag, Python generator, MoGraph Python effector, Python field, and the Xpresso Python operator. Creating or editing them is gated behind a separateC4D_MCP_ENABLE_PYTHON_OPS=1opt-in, since their code parameter is RCE-equivalent toexec_python.Before first use: back up (or commit) your scene, start on a throwaway project, and leave your MCP client's per-call approval prompts enabled. See Security before exposing the bridge beyond loopback.
Two pieces to install: the MCP server (this npm package, runs as an MCP stdio process) and the bridge plugin (Python, lives inside Cinema 4D). C4D must be running for the bridge to respond.
Assuming you already have Cinema 4D 2026.0.0+ and Node.js 24+.
Install the bridge plugin into Cinema 4D (one-off). Download the latest
cinema4d_mcp_bridge-<version>.zip from the
Releases page
and extract the cinema4d_mcp_bridge/ folder into your Cinema 4D plugins
directory (see Installing the bridge plugin
for platform-specific paths).
Launch (or restart) Cinema 4D. The C4D console should print
[cinema4d_mcp_bridge] listening on 127.0.0.1:18710.
Smoke-test the MCP server from the CLI:
Then wire it into your MCP client (see Client configuration) and try:
"List every object in the scene, then add a cube named
hero200 units above the origin."
The LLM will call list_entities โ create_entity in sequence; you should see a new cube appear in the viewport.
Prefer running from a local checkout? See CONTRIBUTING.md for the source-install flow.
Generate a random token and set it on both the MCP server process (via the client's env map, below) and the Cinema 4D launch environment. The bridge rejects mismatched requests (constant-time compare); the Node client forwards the value automatically. Strongly recommended โ localhost is not a trust boundary on a shared workstation.
Register the MCP server in your client with the token in the env map:
| Client | Config file |
|---|---|
| Claude Desktop / Claude Code | %APPDATA%\Claude\claude_desktop_config.json (Windows) ยท ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) |
| Other MCP clients | see the client's docs for registering a stdio server |
The same C4D_MCP_* variables must also be set in the Cinema 4D launch environment โ the bridge plugin reads them at C4D startup. macOS: open -a "Cinema 4D" --env C4D_MCP_TOKEN=... (or export in your shell profile before launch). Windows: set as User environment variables and restart C4D.
To change the bridge socket, set C4D_MCP_PORT (and optionally C4D_MCP_HOST โ see Security) alongside C4D_MCP_TOKEN in the same env map, plus the C4D launch env.
68 tools across 16 groups. The LLM picks tools itself based on the prompt โ you rarely invoke them directly. See docs/TOOLS.md for the full table with per-tool descriptions.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-cinema4d)<a href="https://allmcps.com/mcp/mcp-cinema4d"><img src="https://allmcps.com/api/badge/mcp-cinema4d?style=directory" alt="MCP Cinema4d on AllMCPs" /></a>