[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "maya-mcp-server"
version = "1.0.8"
description = "MCP server for Autodesk Maya integration with AI assistants - 29 tools for 3D modeling, animation, rendering, debugging, outliner browsing, plugin management, and Maya API access"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Maya MCP Server Team", email = "jeffreytsai1004@gmail.com"}
]
maintainers = [
{name = "Jeffrey Tsai", email = "jeffreytsai1004@gmail.com"}
]
keywords = [
"maya",
"mcp",
"model-context-protocol",
"3d",
"autodesk",
"ai",
"assistant",
"smithery",
"automation",
"modeling",
"animation",
"rendering"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.1.0",
"smithery>=0.3.1",
"aiohttp>=3.8.0",
"websockets>=11.0.0",
"pyyaml>=6.0",
"pydantic>=2.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0"
]
[project.urls]
Homepage = "https://github.com/Jeffreytsai1004/maya-mcp"
Repository = "https://github.com/Jeffreytsai1004/maya-mcp.git"
Issues = "https://github.com/Jeffreytsai1004/maya-mcp/issues"
Documentation = "https://github.com/Jeffreytsai1004/maya-mcp#readme"
"NPM Package" = "https://www.npmjs.com/package/maya-mcp-server"
"Smithery.ai" = "https://server.smithery.ai/@Jeffreytsai1004/maya-mcp/mcp"
[project.scripts]
maya-mcp-server = "src.server:main"
[tool.setuptools]
packages = ["src", "src.maya_mcp_server"]
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.yml", "*.json", "*.md", "*.txt"]
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q --strict-markers"
testpaths = [
"tests",
]
python_files = [
"test_*.py",
"*_test.py"
]
python_classes = [
"Test*"
]
python_functions = [
"test_*"
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"unit: marks tests as unit tests"
]
# Smithery specific configuration
[tool.smithery]
runtime = "python"
entry = "src/maya_mcp_server/server.py"
install = "pip install -r requirements.txt"
python-version = "3.10"
description = "Maya MCP Server - Connect AI assistants to Autodesk Maya for 3D operations"
category = "3d-modeling"
tags = ["maya", "3d", "modeling", "animation", "rendering", "autodesk"]
[tool.smithery.environment]
MAYA_MCP_HOST = "0.0.0.0"
MAYA_MCP_PORT = "8765"
MAYA_MCP_MAYA_PORT = "7022"
[tool.smithery.compatibility]
maya = ["2023", "2024", "2025"]
python = ">=3.10"
[tool.smithery.requirements]
maya = "Autodesk Maya 2023+ must be installed and running"
python = "Python 3.8+ with required dependencies"
network = "Maya command port (default 7022) must be accessible"