AnimAgent MCP Server
Provides AI voice generation and subtitle force alignment for multilingual narration in animated videos.
Provides story creation and narrative generation using Google Gemini Pro 2.5 to transform ideas into structured storylines.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AnimAgent MCP ServerCreate a 5-minute fairytale about a brave mouse in Ghibli style."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AnimAgent MCP Server

π¬ Create Professional AI-Powered Story Animations Directly from Claude Desktop
π One-Click Installation
macOS/Linux:
git clone https://github.com/preangelleo/animagent-mcp-server.git && cd animagent-mcp-server && ./install.shWindows:
git clone https://github.com/preangelleo/animagent-mcp-server.git && cd animagent-mcp-server && install.batThat's it! The installer automatically:
β Checks Node.js installation
β Installs all dependencies
β Guides you through credential setup
β Configures Claude Desktop for you
β Verifies the connection
Related MCP server: Worksona MCP Server
π What is AnimAgent?
AnimAgent is the world's first MCP server for AI-generated story animations. Transform your ideas into professional animated videos through natural conversation with Claude Desktop - no video editing skills required!
β¨ Key Features
π 13 Story Types: Fairytales, Sci-Fi, Educational, Romance, Adventure, and more
π 12 Languages: English, Chinese, Spanish, French, Hindi, Arabic, and more
π¨ 18 Art Styles: Ghibli, Pixar, Watercolor, Oil Painting, Comic, and more
β±οΈ Flexible Duration: 5 to 60 minutes
π± Multiple Formats: Landscape (16:9), Portrait (9:16), Square (1:1)
π Cloud-Based: No GPU required, all processing in the cloud
π¬ Natural Language: Just describe what you want in plain English
π― Quick Start Guide
Step 1: Get Your Credentials (2 minutes)
Register at app.sumatman.ai
Login with your email
Copy your User ID from the Welcome page
Remember your email address
Step 2: Install the Client (1 minute)
Run the one-click installer above, or manually:
# Clone and install
git clone https://github.com/preangelleo/animagent-mcp-server.git
cd animagent-mcp-server
npm install
# Configure credentials
cp .env.example .env
# Edit .env with your User ID and Email
# Setup Claude Desktop
npm run setupStep 3: Start Creating! (Instant)
In Claude Desktop, simply type:
"Create a 10-minute fairytale about a brave mouse discovering magical cheese"π¬ Usage Examples
Basic Creation
"Create a children's story about friendship"With Full Customization
"Create a 15-minute sci-fi adventure in Japanese anime style,
suitable for teenagers, with Chinese narration"With Advanced Options
"Create an educational story with subtitles and zoom effects enabled"Task Management
"Show me the status of my animation task"
"Edit task web_123_abc to change duration to 20 minutes"
"Repeat my last task but with a different story"π οΈ Available Commands
Command | Description | Example |
create_animation_task | Create new animation | "Create a story about..." |
get_task_details | Check task status | "Show task web_123_abc" |
edit_animation_task | Modify pending task | "Edit task to change..." |
repeat_animation_task | Create variation | "Repeat task with new story" |
delete_animation_task | Remove pending task | "Delete task web_123_abc" |
π¬ Advanced Video Options (v2.2.0)
Option | Type | Default | Description |
enable_subtitle | Boolean | false | Add synchronized subtitles to your video |
enable_zoom_effect | Boolean | false | Add cinematic zoom in/out effects for dynamic visuals |
watermark_enabled | Boolean | false | Add custom watermark (requires upload at app.sumatman.ai) |
π¨ Customization Options
fairytale_story- Magical fairytaleseducational_story- Learning contenthistorical_story- Historical eventssci_fi_story- Science fictionfantasy_story- Fantasy worldsadventure_story- Epic adventuresromantic_story- Love storiescinematic_story- Movie-stylebible_story- Biblical storiespoetry_story- Poetic narrativeslyric_story- Musical storiescomics_story- Comic book stylebook_story- Book adaptations
Animation Styles: Ghibli, Pixar, Disney, Anime
Traditional Art: Oil Painting, Watercolor, Chinese Ink
Modern Styles: Digital Art, Vector Graphics, 3D Rendering
Unique Styles: Steampunk, Cyberpunk, Fantasy Art
View all 18 styles with samples β
English, Chinese, Spanish, French, Hindi, Arabic, Bengali, Portuguese, Russian, Japanese, German, Korean
π§ Advanced Configuration
Manual Claude Desktop Setup
If automatic setup doesn't work, manually edit Claude's config:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"animagent": {
"command": "node",
"args": ["/path/to/animagent-mcp-server/src/index.js"],
"env": {
"ANIMAGENT_USER_ID": "your-user-id",
"ANIMAGENT_USER_EMAIL": "your-email@example.com"
}
}
}
}Environment Variables
Variable | Description | Required |
| Your user ID from app.sumatman.ai | β Yes |
| Your registered email | β Yes |
| Server URL (default: https://app.sumatman.ai/api/mcp) | β No |
| Enable debug logging | β No |
π¨ Troubleshooting
Common Issues & Solutions
Solution: Always provide the task ID when editing/repeating/deleting:
β
"Edit task web_123_abc to change duration"
β "Edit my task to change duration"Solution:
Check your
.envfile has correct credentialsVerify User ID matches the one from app.sumatman.ai
Restart Claude Desktop after changes
Solution:
Check internet connection
Verify https://app.sumatman.ai is accessible
Try
npm run testto test connectionCheck firewall/proxy settings
π° Pricing
Credit System: 50 credits per minute of video
Free Trial: 100 credits on signup
Packages: From $1 (10 credits) to $500 (7,000 credits)
View Balance: app.sumatman.ai/credits
ποΈ Technology Stack
AI-Powered Components
π Story Creation: Google Gemini Pro 2.5 transforms your ideas into compelling narratives and structured storylines with image description for each scene
π€ Voice Acting: Volcano Engine for authentic Chinese voice generation, ElevenLabs for international voices and subtitle force alignment
π¨ Visual Generation: Advanced Flux Kontext Max and QWen models ensure consistent, beautiful scene generation with proper text rendering
π¬ Video Processing: CloudBurst Fargate enables parallel video processing - fast rendering regardless of the number of scenes
ποΈ Architecture
graph LR
A[Claude Desktop] -->|MCP Protocol| B[AnimAgent Client]
B -->|HTTPS/JSON-RPC| C[AnimAgent Server]
C -->|Process| D[AI Pipeline]
D --> E[Gemini Pro 2.5 Story]
D --> F[Flux Kontext Max/QWen Images]
D --> G[Volcano Engine/ElevenLabs Voice]
D --> H[CloudBurst Fargate Video]
H -->|Final Video| I[User Dashboard]π€ Contributing
We welcome contributions! Please see our Contributing Guide for details.
# Fork and clone
git clone https://github.com/YOUR_USERNAME/animagent-mcp-server.git
# Create feature branch
git checkout -b feature/amazing-feature
# Commit changes
git commit -m 'Add amazing feature'
# Push and create PR
git push origin feature/amazing-featureπ License
This project is licensed under the MIT License - see the LICENSE file for details.
π Support
Website: app.sumatman.ai
GitHub Issues: Report a bug
Email: support@sumatman.ai
π Acknowledgments
Built with Model Context Protocol by Anthropic
Powered by Sumatman AI
Special thanks to all our early adopters and contributors
β Star us on GitHub if you find this useful!
π Star Β· π Report Bug Β· π‘ Request Feature
Made with β€οΈ by Sumatman AI
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/preangelleo/animagent-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server