substance-designer-mcp
This server provides an MCP interface to Adobe Substance 3D Designer, enabling AI-driven node graph manipulation with security-focused read and controlled write operations.
Read / Inspection
sd_ping– Check connectivity and report MCP, bridge, plugin, Designer version, session, and compatibility statussd_get_application_info– Read Designer version, Python runtime, platform, open packages, active graph, and capabilitiessd_get_capabilities– Read the runtime-probed capability matrix and verification statussd_list_packages– List all packages currently open in Designersd_get_active_graph– Read the current editable graph, its package, node count, and selection countsd_list_graph_nodes– Paginate through nodes in a graph (summary or full detail)sd_get_selection– Read the currently selected nodes in the active graphsd_get_node– Read detailed information about a single node by referencesd_list_node_properties– List all runtime input/output properties, types, values, and connection state for a nodesd_search_library– Search resources (filters, materials, etc.) across currently loaded packages
Write / Creation
sd_create_node– Create a verified atomic node at an explicit position in a graphsd_create_instance_node– Instantiate a resource found viasd_search_libraryinto a graphsd_move_nodes– Move 1–100 explicitly identified nodes to new coordinatessd_connect_nodes– Connect output/input properties between two nodes (with direction, type, and duplicate checks)sd_disconnect_nodes– Remove an existing connection between two node propertiessd_set_node_parameter– Set a simple parameter value on a node after runtime type validation
Destructive / Confirmed Actions
sd_delete_nodes– Delete specific nodes from a graph (requiresconfirm: true; empty list rejected)sd_save_package– Save an already-saved open package in place (requiresconfirm: true; no Save As supported)
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., "@substance-designer-mcplist open packages"
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.
substance-designer-mcp
An independent, security-focused Model Context Protocol server for Adobe Substance 3D Designer. Version 1.1.0 adds generic public authoring tools while keeping the MCP runtime outside Designer so each Python environment remains isolated.
Verification status: The original 1.0.0 tool set completed the protected 33/33 real-machine E2E suite on Designer 16.0.3, including the bridge, reads, node editing, connections, simple parameters, confirmation, save, cleanup, and restart behavior. The 1.1.0 package/graph creation, snapshot, Output metadata, graph patch, bitmap import, Save As, and SBSAR export additions are checked against the bundled 16.0.3 API and offline-tested, but have not yet completed a fresh real-machine E2E run. Offline evidence is not presented as real-machine evidence. See the Designer 16.0.3 test record.
Chinese documentation: README.zh-CN.md
Compatibility
Substance Designer version | Status |
16.0.3 | 1.0.0 baseline real-machine tested; 1.1.0 authoring additions await a fresh live run |
Other released 16.x versions | Expected compatible, not individually tested |
Future versions | Not yet testable; capability detection is used to reduce upgrade breakage |
A version is marked as fully tested only after the plugin and MCP tools have been exercised in a real Substance Designer installation. Capability detection does not replace real-version testing.
Related MCP server: nuke-mcp
What it does
Reads application, package, graph, selection, node, property, and capability state.
Searches resources in packages already loaded by Designer.
Creates verified atomic nodes and instances of resources returned by the search tool.
Moves and deletes explicit nodes, connects explicit runtime properties, and writes supported simple parameters.
Saves one already-saved package in place after explicit confirmation.
Creates new packages and compositing graphs without relying on the current selection.
Reads runtime node definitions and versioned graph snapshots with explicit connections.
Creates Output nodes with real Designer usage metadata instead of response-only labels.
Dry-runs and applies bounded additive graph patches with runtime validation and rollback.
Imports local bitmap resources, performs confirmed Save As, and publishes saved packages to SBSAR through the documented in-process API.
It does not generate material recipes, scrape Qt UI, expose Python or shell execution, depend on NodeStation, access the internet, upload telemetry, or provide remote control.
Architecture
MCP host
| stdio
External Python 3.10+ MCP server
| authenticated length-prefixed JSON on 127.0.0.1
Designer Python plugin
| allow-listed command registry and Qt main-thread dispatcher
Focused services and compatibility probes
| verified Adobe Python API calls
Substance 3D Designer (real-machine verified: 16.0.3)The external process never imports Adobe's sd module. The bridge contains transport only.
Designer API calls live in plugin services or the compatibility adapter. See
architecture.md and security-model.md.
Installation
External MCP server
Windows PowerShell:
py -3.12 -m venv .venv
.\.venv\Scripts\python.exe -m pip install -e .Cross-platform:
python3 -m venv .venv
.venv/bin/python -m pip install -e .The installed command is substance-designer-mcp and uses stdio by default.
Designer plugin
Build the distributable ZIP:
.\.venv\Scripts\python.exe scripts\build_plugin.pyInstall into an explicit user plugin directory:
.\.venv\Scripts\python.exe scripts\install_plugin.py --target "C:\path\to\Designer\user-plugins"The installer refuses Adobe's application installation tree and backs up an existing plugin. Manual Plugin Manager loading and uninstall details are in installation.md.
MCP host configuration
{
"mcpServers": {
"substance-designer": {
"command": "substance-designer-mcp",
"args": []
}
}
}This is generic stdio configuration and is not tied to one AI client.
Codex and PaperHub plugin metadata
The repository also ships Codex plugin metadata for public distribution:
.codex-plugin/plugin.jsonprovides the display name, icon, prompts, and capability summary..mcp.jsonuses the portable stdio commandsubstance-designer-mcp; it intentionally does not contain a developer-specific absolute path.assets/icon.pngis the composer icon used by Codex/PaperHub surfaces.
When registering this MCP in a shared marketplace such as PaperHub, use the stdio startup command
substance-designer-mcp with empty startup arguments. Each user still needs to install the Python
package and the Designer plugin bridge locally before the MCP can connect to Substance 3D Designer.
Tools
Tool | Access | Risk boundary |
| Read | Reports offline state without crashing |
| Read | Runtime-probed information only |
| Read | Separates availability from verification |
| Read | Open packages only |
| Read | Current graph only |
| Read | Bounded pagination |
| Read | Bounded current selection |
| Read | Structured current-session reference |
| Read | Runtime IDs and types |
| Read | Loaded resources, no UI scraping |
| Write | Verified runtime definition only |
| Write | Search-result resource reference only |
| Write | Explicit nodes and finite coordinates |
| Destructive | Requires |
| Write | Explicit runtime properties; no port guessing |
| Write | Explicit existing connection |
| Write | Runtime type checked; simple types only |
| Destructive | Requires |
| Write | Creates one unsaved user package |
| Write | Explicit package and portable unique identifier |
| Read | Runtime catalog; bounded and searchable |
| Read | Versioned bounded nodes, properties, connections, and presets |
| Write | Opens one explicit graph in the editor |
| Write | Explicit identifier, label, group, and official usages |
| Read | Dry-run only; definitions, ports, types, targets, and cycles |
| Write | Additive patch only; rollback of all created nodes on failure |
| Write | Existing local bitmap and explicit embed method only |
| Destructive | Absolute |
| Destructive | Saved package, explicit settings, overwrite opt-in, confirmation |
Configuration
Environment variable | Default |
|
|
|
|
|
|
|
|
|
|
|
|
Set the session and plugin-log path variables before Designer imports the plugin. This lets an isolated test session avoid replacing the normal per-user state files.
Logs use stderr or rotating files. Stdio stdout is reserved for MCP protocol messages.
Development
.\.venv\Scripts\python.exe -m pip install -e ".[dev]"
.\.venv\Scripts\python.exe -m pytest
.\.venv\Scripts\ruff.exe check .
.\.venv\Scripts\ruff.exe format --check .
.\.venv\Scripts\mypy.exe src
.\.venv\Scripts\python.exe -m build
.\.venv\Scripts\python.exe scripts\build_plugin.pyAPI claims must come from Designer's bundled Python API documentation. Contribution and release rules are in CONTRIBUTING.md and development.md.
License and trademarks
MIT. Adobe and Substance 3D Designer are trademarks of Adobe. This project is independent and is not endorsed by Adobe.
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
- AlicenseAqualityCmaintenanceA professional MCP server that lets AI assistants directly control Adobe Photoshop for document creation, layer management, filters, adjustments, shapes, text, and design intelligence like palette generation and font pairing.Last updated322MIT
- Alicense-qualityDmaintenanceA production-grade MCP server for Foundry Nuke that enables AI assistants to understand and manipulate compositing environments, including AOVs, deep workflows, distortion, tracking, OCIO/ACEScct, and CopyCat ML.Last updatedMIT
- Flicense-qualityCmaintenanceAn MCP server that lets AI assistants control Adobe Illustrator locally—running ExtendScript, capturing canvas screenshots, exporting artwork, and optionally remembering techniques—all without network activity.Last updated
- Alicense-qualityAmaintenanceAdapter that runs an MCP server inside Substance 3D Designer, enabling tools to inspect and interact with the active designer session and its packages through natural language.Last updatedMIT
Related MCP Connectors
An MCP server for Arcjet - the runtime security platform that ships with your AI code.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Personal MCP server for humans who create. Proof of authorship, license control.
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/MikeLi-28/substance-designer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server