{
"mcpServers": {
"maya-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP Server for Autodesk Maya
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 93 days ago. 18 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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: