Skip to main content

dcc-mcp-server-bin — PyPI distribution blueprint

Status: blueprint — packaging files are wired but no PyPI release has shipped yet. Tracked in issue #1002 (deliverable 3 of RFC #998 Addendum A.7).

This directory packages the crates/dcc-mcp-server Rust binary as a platform-specific binary-only PyPI wheel, following the same pattern as ruff, uv, cmake, and pyright. The result is a single pip install dcc-mcp-server that drops the gateway / sidecar / translate CLI onto PATH for Python 3.7+ regardless of which DCC the user runs.

Why a separate PyPI package?

dcc-mcp-core is a PyO3 wheel — its _core.so is loaded into the host Python interpreter (mayapy / blender-python / hython). The sidecar binary, by contrast, is meant to run as its own OS process; bundling it into dcc-mcp-core would couple two artefacts with very different release cadences and ABI matrices. Splitting them is the standard pattern.

Package Distributes Audience
dcc-mcp-core (existing) PyO3 wheel (_core.so + Python facade) Skill authors, plugin/addon code running inside a DCC interpreter
dcc-mcp-server (this dir) platform-specific Python 3.7+ binary wheels Operators, sidecar spawners, anyone who wants a standalone gateway
dcc-mcp-<dcc> (each repo) pure-Python plugin/addon glue DCC plugin loaders (userSetup.py, addon register(), …)

Layout

pkg/dcc-mcp-server-bin/
├── pyproject.toml              ← maturin config, bindings = "bin"
├── python/
│   └── dcc_mcp_server/
│       └── __init__.py         ← binary_path() helper for subprocess spawn
└── README.md                   ← this file

The Rust source is not duplicated here — pyproject.toml sets manifest-path = "../../crates/dcc-mcp-server/Cargo.toml" so maturin builds the existing workspace crate.

Local build

# Build a wheel for the current platform / Python
cd pkg/dcc-mcp-server-bin/
vx pip install maturin
vx maturin build --release

# Resulting wheel lands in ../../target/wheels/dcc_mcp_server-*.whl
vx pip install ../../target/wheels/dcc_mcp_server-*.whl
dcc-mcp-server --help

The wheel uses maturin bindings = "bin", so it does not load a Python extension module and has no CPython ABI dependency. Its metadata deliberately declares Requires-Python: >=3.7 so embedded Python 3.7 hosts such as Maya 2022 can install it directly.

Cross-platform CI release

The new .github/workflows/release-server-binary.yml workflow (also part of this PR) builds wheels for:

OS Arch Tag
manylinux x86_64 manylinux_2_28_x86_64
manylinux aarch64 manylinux_2_28_aarch64
Windows x86_64 win_amd64
Windows arm64 win_arm64
macOS x86_64 macosx_11_0_x86_64
macOS arm64 macosx_11_0_arm64

The workflow triggers on tags matching dcc-mcp-server-v* so it stays independent of the existing dcc-mcp-core release cycle.

Usage from a DCC plugin

# In a Maya plugin / Blender addon, after `pip install dcc-mcp-server`:
import os, 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",
    "--watch-pid", str(os.getpid()),
])

That's the entire plugin → sidecar wiring. Per-DCC HostRpcClient implementations land in their respective adapter repos.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dcc_mcp_server-0.19.92-py3-none-win_amd64.whl (22.8 MB view details)

Uploaded Python 3Windows x86-64

dcc_mcp_server-0.19.92-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (18.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

dcc_mcp_server-0.19.92-py3-none-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl (36.1 MB view details)

Uploaded Python 3macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file dcc_mcp_server-0.19.92-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for dcc_mcp_server-0.19.92-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb0b6f5f4d6c9b7aefc6611bc354901d6f8f5b13ce76f03d8c496c2251e81bf3
MD5 90ad710e1558084c3e91291a26d70304
BLAKE2b-256 a18917311b7738894f77da05a1ce6b96e255710fbed9d5c860c57e62ab449136

See more details on using hashes here.

Provenance

The following attestation bundles were made for dcc_mcp_server-0.19.92-py3-none-win_amd64.whl:

Publisher: release.yml on dcc-mcp/dcc-mcp-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dcc_mcp_server-0.19.92-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for dcc_mcp_server-0.19.92-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ea287ef07cf53b76c01829b5da1f0172f33887b175dbc9e3c6eb6305abb9083e
MD5 ae411a160ea4bc02fb18be5fecf9250a
BLAKE2b-256 f3bcfc3f658eb24c4b41598d6fd2a335dd30d31166d6fbf9c9ae59b5d2c143e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dcc_mcp_server-0.19.92-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: release.yml on dcc-mcp/dcc-mcp-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dcc_mcp_server-0.19.92-py3-none-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcc_mcp_server-0.19.92-py3-none-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45172c9bb86483d1676690fd544986feff7bd3913f2397765d0e278dc539b192
MD5 c0dcf7452595dec9388b61c73c79ad9a
BLAKE2b-256 73e7191481a73135a16885a03ef53f49f8f3385e85082190f2c71b28fea48f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dcc_mcp_server-0.19.92-py3-none-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl:

Publisher: release.yml on dcc-mcp/dcc-mcp-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.20.21

3 files

0.20.20

3 files

0.20.19

3 files

0.20.18

3 files

0.20.17

3 files

0.20.16

3 files

0.20.15

3 files

0.20.14

3 files

0.20.13

3 files

0.20.12

3 files

0.20.11

3 files

0.20.9

3 files

0.20.8

3 files

0.20.7

3 files

0.20.6

3 files

0.20.5

3 files

0.20.4

3 files

0.20.3

3 files

0.20.2

3 files

0.20.1

3 files

0.20.0

3 files

0.19.94

3 files

0.19.93

3 files

This release

0.19.92 This release

3 files

0.19.91

3 files

0.19.90

3 files

0.19.89

3 files

0.19.88

3 files

0.19.87

3 files

0.19.86

3 files

0.19.85

3 files

0.19.84

3 files

0.19.83

3 files

0.19.82

3 files

0.19.81

3 files

0.19.80

3 files

0.19.79

3 files

0.19.78

3 files

0.19.77

3 files

0.19.76

3 files

0.19.75

3 files

0.19.74

3 files

0.19.73

3 files

0.19.72

3 files

0.19.71

3 files

0.19.69

3 files

0.19.68

3 files

0.19.67

3 files

0.19.66

3 files

0.19.65

3 files

0.19.64

3 files

0.19.63

3 files

0.19.62

3 files

0.19.61

3 files

0.19.60

3 files

0.19.59

3 files

0.19.58

3 files

0.19.57

3 files

0.19.56

3 files

0.19.55

3 files

0.19.54

3 files

0.19.53

3 files

0.19.52

3 files

0.19.51

3 files

0.19.50

3 files

0.19.49

3 files

0.19.48

3 files

0.19.47

3 files

0.19.45

3 files

0.19.44

3 files

0.19.43

3 files

0.19.42

3 files

0.19.41

3 files

0.19.40

3 files

0.19.39

3 files

0.19.38

3 files

0.19.37

3 files

0.19.36

3 files

0.19.35

3 files

0.19.34

3 files

0.19.33

3 files

0.19.32

3 files

0.19.31

3 files

0.19.30

3 files

0.19.29

3 files

0.19.28

3 files

0.19.27

3 files

0.19.26

3 files

0.19.25

3 files

0.19.24

3 files

0.19.23

3 files

0.19.22

3 files

0.19.21

3 files

0.19.20

3 files

0.19.19

3 files

0.19.18

3 files

0.19.17

3 files

0.19.16

3 files

0.19.15

3 files

0.19.14

3 files

0.19.13

3 files

0.19.12

3 files

0.19.11

3 files

0.19.10

3 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page