Installation¶
MCA Editor is distributed as a single Python file that you drop into Maya's plug-ins folder. No installer, no dependencies to manage — Maya handles everything.
Download¶
Download the mcaEditor.py file for your Maya version:
| Maya Version | File |
|---|---|
| Maya 2024 | mcaEditor-Maya2024.py |
| Maya 2025 | mcaEditor-Maya2025.py |
| Maya 2026 | mcaEditor-Maya2026.py |
Use the correct version
Each Maya version requires its own build. The files are not interchangeable — Maya 2024 uses Python 3.10 while Maya 2025/2026 use Python 3.11.
Install¶
Step 1: Copy the file¶
Rename the downloaded file to mcaEditor.py and place it in your Maya plug-ins folder:
If the plug-ins folder doesn't exist, create it.
Step 2: Load the plugin¶
- Open Maya
- Go to Windows > Settings/Preferences > Plug-in Manager
- Find
mcaEditor.pyin the list - Check Loaded
- Check Auto load to have it load every session
Step 3: Open MCA Editor¶
Click the Script Editor button in Maya's toolbar. MCA Editor opens instead of Maya's built-in editor.
First Run¶
On first load, MCA Editor will:
- Extract its packages to a local cache directory
- Create a managed virtual environment for third-party dependencies (like the AI chat SDK)
- Install required packages automatically
This happens once and takes about 30 seconds. Subsequent launches are instant.
Where files go
- Package cache:
%LOCALAPPDATA%\MCAEditor-Maya<version>-py3.XX\(Windows) - Virtual environment:
~/Documents/mca_preferences/.venv-3.XX/ - Settings: Stored in your OS settings (QSettings / Windows Registry)
Update¶
To update MCA Editor, simply replace the mcaEditor.py file with the new version and restart Maya. The plugin detects version changes and re-extracts automatically.
Uninstall¶
- Uncheck Loaded and Auto load in Maya's Plug-in Manager
- Delete
mcaEditor.pyfrom your plug-ins folder - Optionally, delete the cache folder at
%LOCALAPPDATA%\MCAEditor-Maya*\