generate_svg_animation
Create SVG animations from static images by defining motion through natural language prompts. Specify input and output paths to generate dynamic animations with MCP-powered AI.
Instructions
Generate an SVG animation from a source file and prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | Yes | Local file path to the output file, must be the absolute path (e.g., '/path/to/animated-svg.tsx') | |
prompt | Yes | Description of what animation to generate (e.g., 'Make the character wave their hand', 'Add bouncing motion to the ball') | |
svg_path | Yes | Local file path to the source file to animate, must be the absolute path (e.g., '/Users/username/image.png') |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"description": "Local file path to the output file, must be the absolute path (e.g., '/path/to/animated-svg.tsx')",
"type": "string"
},
"prompt": {
"description": "Description of what animation to generate (e.g., 'Make the character wave their hand', 'Add bouncing motion to the ball')",
"type": "string"
},
"svg_path": {
"description": "Local file path to the source file to animate, must be the absolute path (e.g., '/Users/username/image.png')",
"type": "string"
}
},
"required": [
"prompt",
"svg_path",
"output_path"
],
"type": "object"
}