Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"maya-mcp-server": {
"args": [
"maya-mcp-server"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for interacting with Autodesk Maya sessions.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'maya-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked maya-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / entertainment
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
The official MCP Server for the Mux API
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
MCP Security Weekly
Get CVE alerts and security updates for Maya Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for interacting with Autodesk Maya sessions.
uvx maya-mcp-server
# Using uvx (recommended)
uvx maya-mcp-server
# Or install with pip
pip install maya-mcp-server
Add to your Claude Code MCP configuration, run:
claude mcp add --transport stdio maya -- uvx maya-mcp-server
The default scope is "local", which adds it to your ~/.claude.json keyed to a particular project directory. Setting --scope=user adds to ~/.claude.json across all projects, and --scope=project to add the configuration into a .mcp.json in the current project directory, so that it can be commited to your repo.
For local development use:
claude mcp add --transport stdio maya -- uv run --directory /path/to/maya-mcp-server/ maya-mcp-server
The server automatically discovers Maya sessions via command ports. To enable a Python command port in Maya:
import maya.cmds as cmds
cmds.commandPort(name=":7002", sourceType="python")
Or add to your userSetup.py for automatic startup.
Tools accept an optional session_key parameter for targeting specific sessions.
If only one Maya session exists, it will be auto-selected.
Session keys are returned by list_sessions and add_session.
| Tool | Description |
|---|---|
list_sessions | List all active Maya sessions. Returns session info including session_key for use with other tools/resources. |
add_session | Manually add a Maya session at a specific host:port. Use when auto-discovery doesn't find your session. |
write_module | Create a virtual Python module in Maya. Useful for defining reusable functions. |
execute_code | Execute Python code in a session. Supports result capture modes: NONE, JSON, RAW. |
| Resource | Description |
|---|---|
maya://sessions/{session_key}/info | Session information (pid, user, maya_version, scene_name, scene_path) |
maya://sessions/{session_key}/output | Captured stdout/stderr output from the session |
This looks to be the first publicly available MCP server for Maya and I was inspired by a few aspects of this tool, especially the goal of zero Maya-side setup.
Disadvantages:
for loop or function)uvx, or pip install from pypi.This is the original LLM integration for Maya, which embeds ChatGPT directly in a PySide window and enables the LLM to respond to user commands and queries by executing code in the session.
Disadvantages: