MCP server for creating SPINE2D animations
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"spine2d-animation-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This Model Context Protocol (MCP) server provides tools for creating SPINE2D animations from PSD character files using natural language descriptions.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Coinbase Design System - MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Spine2d Animation Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This Model Context Protocol (MCP) server provides tools for creating SPINE2D animations from PSD character files using natural language descriptions.
The SPINE2D Animation MCP server allows you to:
./install.sh
The installation script will:
After installation, restart VS Code and/or Claude. You can then use the following tools through the MCP server:
Upload and process a PSD file:
Use: "Import my character from character.psd"
Parameters:
file_path: Path to the PSD fileAutomatically rig a character that has been imported:
Use: "Set up rigging for my character"
Parameters:
character_id: Character ID from import_psdCreate an animation from a text description:
Use: "Create a happy waving animation for my character"
Use: "Make my character jump with excitement"
Use: "Animate my character to run scared with sparkle effects"
Parameters:
character_id: Character IDdescription: Animation description (e.g., "wave happily")Get a preview of the animation:
Use: "Show me a preview of the waving animation"
Parameters:
character_id: Character IDanimation_id: Animation IDExport the final animation:
Use: "Export the jumping animation as a GIF"
Parameters:
character_id: Character IDanimation_id: Animation IDformat: Export format (json, png, gif)spine2d-animation-mcp/
├── README.md # This file
├── requirements.txt # Python dependencies
├── install.sh # Installation script
├── src/
│ ├── main.py # Entry point
│ ├── server.py # MCP server implementation
│ ├── psd_parser.py # PSD parsing module
│ ├── animation_generator.py # Animation generation module
│ └── spine2d_integration.py # SPINE2D integration module
└── storage/ # Created during installation
├── characters/ # Imported character data
├── animations/ # Generated animations
├── rigs/ # Character rigs
└── exports/ # Exported animations