================== /// MCP /// /// MAN /// ================== [server:online] [protocol:ready]
manim-mcp-server
by abhiemj
MCP server that executes Manim animation scripts and returns rendered videos.
438
41
SpecializedInstallation
No explicit installation instructions were found in the repository metadata. A typical way to run a Python-based MCP server is:
1. Clone the repository
git clone https://github.com/abhiemj/manim-mcp-server.git
cd manim-mcp-server
2. (Recommended) Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
3. Install Python package requirements
pip install -r requirements.txt # If this file exists. Otherwise inspect setup.py/pyproject.toml.
4. Run database or external service migrations if the project uses them.
5. Start the server
python -m manim_mcp_server # Replace with the project’s real entry-point (e.g. `uvicorn main:app` or `python server.py`) once known.
6. Verify the server is reachable at the host/port specified in its configuration or environment variables.
Documentation
License: MIT License
Updated 7/30/2025