image_to_video
Transform static images into animated videos with Ghibli-inspired aesthetics. Input an image and optional prompts to generate videos in custom aspect ratios using the Ghibli Video MCP Server.
Instructions
Convert image to animated video
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | API key for authentication | |
aspect_ratio | No | Aspect ratio of the output video (e.g. '9:16') | 9:16 |
image | Yes | Base64 encoded source image or image URL | |
negative_prompt | No | Negative prompt to guide generation | bad prompt |
prompt | No | Optional prompt for video generation |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "API key for authentication",
"type": "string"
},
"aspect_ratio": {
"default": "9:16",
"description": "Aspect ratio of the output video (e.g. '9:16')",
"type": "string"
},
"image": {
"description": "Base64 encoded source image or image URL",
"type": "string"
},
"negative_prompt": {
"default": "bad prompt",
"description": "Negative prompt to guide generation",
"type": "string"
},
"prompt": {
"description": "Optional prompt for video generation",
"type": "string"
}
},
"required": [
"image",
"api_key"
],
"type": "object"
}