skillfed

dcc-mcp-server

Standalone dcc-mcp-server CLI binary — gateway, sidecar, stdio bridge (Rust)

dcc-mcp-server v0.20.6 128.2K downloads/30d#11,715 on PyPI39
Permissive license MIT Active released

What it is and what it does

dcc-mcp-server is a Rust binary packaged as a Python wheel that provides a standalone gateway and sidecar process for connecting DCC applications to the Model Context Protocol. Rather than being loaded as a Python extension module into the host DCC interpreter, it runs as its own OS process and communicates with DCC plugins via RPC, making it suitable for operators and sidecar spawners who need a separate, independently-versioned binary.

The package follows the pattern of tools like ruff and uv: a single `pip install` command places a CLI binary on PATH that can be invoked from DCC plugins to establish the gateway connection. It supports Python 3.7 through 3.14 and is distributed as platform-specific wheels for macOS (x86_64 and arm64), Linux (x86_64), and Windows (x86_64 and arm64), with no runtime Python dependencies.

Use it for:

  • Spawn a Maya sidecar gateway from a Maya plugin to enable MCP-based tool integration without modifying the host interpreter.
  • Deploy a Blender addon that launches the sidecar as a subprocess to bridge Blender's Python with external MCP servers.
  • Run the gateway on a headless Linux server to provide an MCP endpoint for Houdini batch processing or render farm jobs.
  • Integrate the binary into a DCC plugin installer so end users get a working gateway with a single pip command.
  • Use the CLI directly from shell scripts or CI/CD pipelines to test MCP protocol interactions with DCC workflows.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Distributes a Rust-compiled CLI binary that runs as a standalone gateway or sidecar process to bridge DCC applications (Maya, Blender, Houdini) with the Model Context Protocol.

Yes, if you are building DCC plugins or operators that need to integrate with the Model Context Protocol. The package is actively maintained, has no security vulnerabilities, carries a permissive MIT license, and solves the specific problem of distributing a standalone binary gateway without coupling it to the core Python extension module. Install it when you need the sidecar spawner pattern; skip it if you are not working with DCCs or MCP.

Install

dcc-mcp-server on PyPI

pip

pip install dcc-mcp-server

uv

uv add dcc-mcp-server

poetry

poetry add dcc-mcp-server

Installing dcc-mcp-server

Before you install

Released 1 day ago with active maintenance; installs via platform-specific wheels (macOS, Linux, Windows) with no runtime dependencies, though medium friction reflects the binary-only distribution model and requirement to spawn as a separate OS process.

License in practice

MIT license permits commercial and private use with minimal restrictions; suitable for integration into proprietary DCC plugins and workflows.

Quickstart

pip install dcc-mcp-server

import subprocess
from dcc_mcp_server import binary_path

proc = subprocess.Popen([
    str(binary_path()),
    "sidecar",
    "--dcc", "maya",
    "--host-rpc", "commandport://127.0.0.1:6000",
])

Requires Python 3.7 or later; binary must run as a separate OS process, not loaded into the host Python interpreter.

Verify before relying

  • Exact command-line interface and all available sidecar flags beyond the example shown.
  • Whether the binary works on embedded Python interpreters (e.g. Maya 2022's Python 3.7) in practice.
  • Performance and resource overhead when running as a long-lived sidecar process.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.7)
Install friction medium — platform-specific wheel
Runtime dependencies none
Maintenance actively maintained — 1 days since the last release
Last repo commit
First released
Downloads 128,233/month — #11,715 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: dcc_mcp_server-0.20.6-py3-none-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl; dcc_mcp_server-0.20.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl; dcc_mcp_server-0.20.6-py3-none-win_amd64.whl

Keywords: dcc, mcp, gateway, sidecar, maya, blender, houdini

Development Status :: 4 - BetaEnvironment :: ConsoleIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: RustTopic :: Multimedia :: Graphics :: 3D ModelingTopic :: Software DevelopmentTopic :: System :: Networking

Tags

dcc gateway sidecar binarymaya blender houdini mcp bridgestandalone mcp server clidcc plugin sidecar spawnermodel context protocol gateway
dcc-integrationmcp-gatewayrust-binary

More Software Development packages