Maya MCP
MCP ServerFree** - MCP server for Autodesk Maya
Capabilities9 decomposed
maya command execution via mcp protocol
Medium confidenceExecutes arbitrary MEL (Maya Embedded Language) and Python commands directly within Autodesk Maya through the Model Context Protocol, translating MCP tool calls into Maya's command queue with real-time execution and result streaming back to the client. Implements bidirectional communication between Claude/LLM clients and Maya's scripting engine, enabling remote automation without manual script file creation or Maya UI interaction.
Bridges Claude/LLM agents directly to Maya's scripting engine via MCP protocol, enabling stateful command sequences where each command can reference previous results — unlike REST API wrappers that require explicit state management between calls. Implements Maya-specific tool schemas that expose both MEL and Python execution paths with automatic result serialization.
Tighter integration than generic Python subprocess wrappers because it uses MCP's native tool-calling semantics, allowing Claude to reason about available Maya operations as first-class tools rather than generic script execution.
scene state querying and introspection
Medium confidenceProvides structured read-only access to Maya scene hierarchy, object properties, transform data, and material assignments through MCP tools that parse Maya's scene graph and return JSON-serialized results. Implements lazy-loaded scene introspection where queries are executed on-demand rather than caching the entire scene, reducing memory overhead and ensuring real-time accuracy when the scene is modified externally.
Exposes Maya's scene graph as queryable JSON structures through MCP, allowing LLMs to reason about 3D scene composition without requiring knowledge of MEL/Python syntax. Implements on-demand scene traversal rather than full caching, enabling real-time accuracy in dynamic workflows.
More accessible than raw MEL/Python queries because it abstracts scene graph complexity into structured JSON, allowing non-technical users or LLMs to understand scene state without learning Maya scripting.
batch object creation and modification
Medium confidenceSupports creating multiple objects (meshes, cameras, lights, deformers) and modifying their properties in a single MCP call through batched command execution. Translates high-level creation requests (e.g., 'create 5 cubes in a grid') into optimized MEL/Python sequences that minimize round-trip latency and maintain referential integrity across created objects.
Batches multiple object creation and modification commands into optimized MEL/Python sequences executed in a single Maya command, reducing network round-trips and improving performance compared to individual command execution. Maintains referential integrity across created objects within a batch.
More efficient than sequential individual commands because it groups operations into a single Maya transaction, reducing latency overhead and enabling atomic rollback if any operation fails.
mel and python code execution with result streaming
Medium confidenceExecutes arbitrary MEL and Python code snippets within Maya's runtime environment, streaming execution results and error messages back to the MCP client in real-time. Implements a dual-path execution model where Python is preferred for modern workflows but MEL is supported for legacy scripts, with automatic syntax detection and error context preservation.
Provides direct code execution access to Maya's scripting engine with dual MEL/Python support and real-time result streaming, enabling LLMs to generate and execute complex procedural logic without intermediate file I/O. Implements automatic syntax detection to route code to the appropriate interpreter.
More flexible than tool-based execution because it allows arbitrary code generation, but requires careful prompt engineering to ensure LLMs generate syntactically valid MEL/Python code.
selection and context management
Medium confidenceManages Maya's selection state and execution context through MCP tools that can set/clear selections, query current selection, and maintain context across multiple command executions. Implements a stateful selection model where selections persist between commands, enabling LLM agents to build up complex selections through multiple operations (e.g., 'select all red objects, then add all lights to selection').
Exposes Maya's selection state as a stateful MCP resource that persists across multiple tool calls, allowing LLM agents to build complex selections iteratively without re-specifying object lists. Implements selection mode semantics (replace, add, remove) familiar to Maya users.
More intuitive for Maya users than explicit object lists because it leverages Maya's native selection model, but requires careful coordination when multiple clients access the same Maya instance.
transform and attribute manipulation
Medium confidenceProvides MCP tools for reading and writing object transforms (position, rotation, scale) and arbitrary attributes with support for animated values, constraints, and expressions. Implements attribute-level access to Maya's dependency graph, enabling precise control over object properties and animation without requiring knowledge of MEL/Python syntax.
Exposes Maya's dependency graph attribute system through high-level MCP tools that abstract away MEL/Python syntax, enabling LLMs to manipulate transforms and custom attributes without scripting knowledge. Supports both static values and animated keyframes in a unified interface.
More accessible than raw MEL/Python because it provides semantic tools for common operations (set position, add keyframe, apply constraint) rather than requiring users to understand Maya's attribute syntax.
material and shader assignment
Medium confidenceManages material and shader assignments through MCP tools that can create materials, assign them to objects, and query material properties. Implements a simplified material workflow that abstracts Maya's complex shader graph into high-level operations (assign material, set color, set texture) suitable for LLM-driven workflows.
Provides high-level material assignment tools that abstract Maya's complex shader graph into semantic operations (assign material, set color, set texture), enabling LLMs to manage materials without understanding shader networks. Implements a simplified material model suitable for procedural workflows.
More user-friendly than direct shader graph manipulation because it exposes common material operations as simple tools, but less flexible for complex shader networks that require direct graph access.
rig and deformer creation
Medium confidenceProvides MCP tools for creating and configuring deformers (blend shapes, skin clusters, joints) and building simple rigs through high-level operations. Implements a deformer abstraction layer that translates semantic requests (e.g., 'create blend shape for facial animation') into appropriate MEL/Python commands with automatic setup and configuration.
Abstracts Maya's complex deformer and rigging systems into semantic MCP tools that enable LLMs to create and configure deformers without understanding MEL/Python rigging syntax. Implements automatic setup and configuration for common deformer types.
More accessible than raw MEL/Python rigging because it provides high-level deformer operations, but less flexible for complex rigs that require manual weight painting and constraint setup.
rendering and export automation
Medium confidenceAutomates rendering and file export through MCP tools that configure render settings, execute renders, and export scenes to various formats (FBX, OBJ, USD, Alembic). Implements batch rendering support with configurable output paths and format options, enabling automated asset pipelines and render farm integration.
Provides MCP tools for batch rendering and multi-format export, enabling LLM agents to drive complete asset pipelines from scene modification through rendering and export without manual UI interaction. Supports multiple render engines and export formats through a unified interface.
More integrated than separate render and export scripts because it provides a unified MCP interface for the entire export pipeline, enabling LLMs to orchestrate complex workflows in a single reasoning loop.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Maya MCP, ranked by overlap. Discovered automatically through the match graph.
mayar-mcp
Mayar API ModelContextProtocol Server
hyper-mcp-shell
A shell for the ModelContextProtocol
Foobara MCP Connector
** - Easily expose Foobara commands written in Ruby as tools via MCP
@modelcontextprotocol/server-threejs
Three.js 3D visualization MCP App Server
mcp-server-code-runner
Code Runner MCP Server
@theia/ai-mcp
Theia - MCP Integration
Best For
- ✓3D artists and technical directors integrating AI into Maya workflows
- ✓VFX studios automating asset generation and batch processing
- ✓Game developers building procedural content generation tools with LLM guidance
- ✓Developers building AI agents that need to manipulate 3D scenes programmatically
- ✓LLM agents that need to understand scene context before executing modifications
- ✓Procedural asset generation pipelines that query scene state to drive generation parameters
- ✓Technical directors building AI-assisted rigging or layout tools
- ✓Developers implementing scene analysis features (e.g., 'find all objects with red materials')
Known Limitations
- ⚠Requires Maya instance to be running and accessible on the network or local machine
- ⚠MEL/Python command execution is synchronous — long-running operations block the MCP server
- ⚠No built-in error recovery or transaction rollback if a command fails mid-sequence
- ⚠Limited to Maya's scripting capabilities; cannot directly access compiled C++ plugins without MEL/Python wrappers
- ⚠Network latency between MCP client and Maya server adds ~50-200ms per command round-trip
- ⚠Read-only access — cannot modify scene state through query tools (separate execution tools required)
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
** - MCP server for Autodesk Maya
Categories
Alternatives to Maya MCP
Are you the builder of Maya MCP?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →