remotion_list_components
Discover available video components for creating professional YouTube videos. Browse categorized building blocks with schemas, properties, and usage examples to plan your video composition.
Instructions
List available Remotion video components with their schemas.
Returns all available components organized by category. Each component
includes its variants, properties, and usage examples. This helps LLMs
discover what building blocks are available for video creation.
Args:
category: Optional category filter (scene, overlay, animation, chart, layout)
If not specified, returns all categories
Returns:
JSON object with component definitions organized by category
Example:
components = await remotion_list_components()
# Returns all available components
overlay_components = await remotion_list_components(category="overlay")
# Returns only overlay components (lower thirds, captions, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"type": "string"
}
},
"type": "object"
}