This is an MCP (Model Context Protocol) server that executes Manim animation code and returns the generated video. It allows users to send Manim scripts and receive the rendered animation. - Executes Manim Python scripts. - Saves animation output in a visible media folder. - Allows users to clean up temporary files after execution. - Portable and configurable via environment variables. Ensure you
Add this skill
npx mdskills install abhiemj/manim-mcp-serverEnables AI agents to generate mathematical animations via Manim with clear setup instructions
1# Manim MCP Server23456## Overview78This is an MCP (Model Context Protocol) server that executes Manim animation code and returns the generated video. It allows users to send Manim scripts and receive the rendered animation.910## Features1112- Executes Manim Python scripts.13- Saves animation output in a visible media folder.14- Allows users to clean up temporary files after execution.15- Portable and configurable via environment variables.1617## Installation1819### Prerequisites2021Ensure you have the following installed:2223- Python 3.8+24- Manim (Community Version)25- MCP2627### Install Manim2829```sh30pip install manim31```3233### Install MCP3435```sh36pip install mcp37```3839### Clone the Repository4041```sh42git clone https://github.com/abhiemj/manim-mcp-server.git43cd manim-mcp-server44```4546## Integration with Claude4748To integrate the Manim MCP server with Claude, add the following to your `claude_desktop_config.json` file:4950```json51{52 "mcpServers": {53 "manim-server": {54 "command": "/absolute/path/to/python",55 "args": [56 "/absolute/path/to/manim-mcp-server/src/manim_server.py"57 ],58 "env": {59 "MANIM_EXECUTABLE": "/Users/[Your_username]/anaconda3/envs/manim2/Scripts/manim.exe"60 }61 }62 }63}64```6566### Finding Your Python Path6768To find your Python executable path, use the following command:6970#### Windows (PowerShell):71```sh72(Get-Command python).Source73```7475#### Windows (Command Prompt/Terminal):76```sh77where python78```7980#### Linux/macOS (Terminal):81```sh82which python83```8485This ensures that Claude can communicate with the Manim MCP server to generate animations dynamically.8687## Contributing88891. Fork the repository.902. Create a new branch:91 ```sh92 git checkout -b add-feature93 ```943. Make changes and commit:95 ```sh96 git commit -m "Added a new feature"97 ```984. Push to your fork:99 ```sh100 git push origin add-feature101 ```1025. Open a pull request.103104## License105106This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.107108## Author109110Created by **[abhiemj](https://github.com/abhiemj)**. Contributions welcome! 🚀111112### **Listed in Awesome MCP Servers**113This repository is featured in the [Awesome MCP Servers](https://github.com/punkpeye/awesome-mcp-servers) repository under the **Animation & Video** category. Check it out along with other great MCP server implementations!114115116## **Acknowledgments**117- Thanks to the [Manim Community](https://www.manim.community/) for their amazing animation library.118- Inspired by the open-source MCP ecosystem.119120## Find me at121<a href="https://www.instagram.com/aiburner_official" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg" alt="aiburner_official" height="30" width="40" /></a>122@aiburner_official123
Full transparency — inspect the skill content before installing.