Skip to main content
Glama
IBM
by IBM

remotion_add_lower_third

Add TV-style name plates to videos with customizable timing, duration, and styling. Display names and titles as overlays that appear at specific moments without affecting the main timeline.

Instructions

Add a lower third overlay to the composition.

Creates a name plate overlay (TV-style graphics) that appears at a specific
time and shows for a duration. Lower thirds are overlays and don't affect
the main timeline.

Args:
    name: Main name/text to display
    title: Optional subtitle/title
    start_time: When to show (seconds from start)
    duration: How long to show (default: 5.0 seconds)
    variant: Style variant (minimal, standard, glass, bold, animated)
    position: Screen position (bottom_left, bottom_center, bottom_right, top_left, top_center)

Returns:
    JSON with component info

Example:
    await remotion_add_lower_third(
        name="Dr. Sarah Chen",
        title="AI Researcher, Stanford",
        start_time=2.0,
        duration=5.0,
        variant="glass",
        position="bottom_left"
    )

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
durationNo
nameYes
positionNobottom_left
start_timeNo
titleNo
variantNoglass

Implementation Reference

  • The handler function for the 'remotion_add_lower_third' tool. It adds a LowerThird component to the current timeline, handling props like name, title, variant, position, and timing parameters. Returns a JSON response with component details or error.
    @mcp.tool
    async def remotion_add_lower_third(
        name: str,
        title: str | None = None,
        variant: str | None = None,
        position: str | None = None,
        duration: float | str = 5.0,
        track: str = "overlay",
        gap_before: float | str | None = None,
    ) -> str:
        """
        Add LowerThird to the composition.
    
        Name plate overlay with title and subtitle (like TV graphics)
    
        Args:
            name: Person's name to display
            title: Optional title/role to display
            variant: Style variant
            position: Position on screen
            duration: Duration in seconds
            track: Track name (default: "overlay")
            gap_before: Gap before component in seconds (overrides track default)
    
        Returns:
            JSON with component info
        """
    
        def _add():
            if not project_manager.current_timeline:
                return ErrorResponse(
                    error="No active project. Create a project first."
                ).model_dump_json()
    
            try:
                component = ComponentInstance(
                    component_type="LowerThird",
                    start_frame=0,
                    duration_frames=0,
                    props={
                        "name": name,
                        "title": title,
                        "variant": variant,
                        "position": position,
                    },
                    layer=0,
                )
    
                component = project_manager.current_timeline.add_component(
                    component, duration=duration, track=track, gap_before=gap_before
                )
    
                return OverlayComponentResponse(
                    component="LowerThird",
                    start_time=project_manager.current_timeline.frames_to_seconds(
                        component.start_frame
                    ),
                    duration=duration,
                ).model_dump_json()
            except Exception as e:
                return ErrorResponse(error=str(e)).model_dump_json()
    
        return await asyncio.get_event_loop().run_in_executor(None, _add)
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes that this tool creates an overlay that appears at a specific time and duration, doesn't affect the main timeline, and returns JSON with component info. It covers key behavioral aspects like timing, non-destructive overlay nature, and output format, though it could mention potential side effects or error conditions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and appropriately sized. It begins with a clear purpose statement, provides essential context about overlays, lists parameters with explanations, describes the return value, and includes a practical example. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (6 parameters, no output schema, no annotations), the description provides strong contextual completeness. It explains what the tool does, how parameters work, and what to expect in return. The main gap is the lack of explicit error handling or permission requirements, but overall it's quite comprehensive for this type of overlay creation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides excellent parameter semantics beyond the schema. While schema description coverage is 0%, the description clearly explains each parameter's purpose: 'name' as main text, 'title' as optional subtitle, 'start_time' as when to show, 'duration' as how long to show with default, 'variant' as style options, and 'position' as screen placement. This fully compensates for the lack of schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Add a lower third overlay to the composition' with specific details about creating a 'name plate overlay (TV-style graphics)' that appears at a specific time. It distinguishes this from sibling tools like remotion_add_title_scene by focusing on overlay creation rather than scene or project management.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by stating 'Lower thirds are overlays and don't affect the main timeline,' which helps differentiate from timeline-altering tools. However, it doesn't explicitly state when to use this tool versus alternatives like remotion_add_title_scene or provide clear exclusions for when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/IBM/chuk-motion'

If you have feedback or need assistance with the MCP directory API, please join our Discord server