Skip to main content
Glama
chrishayuk
by chrishayuk

remotion_list_projects

View all available video projects in your Remotion workspace to manage and select templates for creating professional YouTube content.

Instructions

List all Remotion projects in the workspace.

Returns:
    JSON array of projects

Example:
    projects = await remotion_list_projects()

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler and registration for remotion_list_projects tool. Decorated with @mcp.tool. Returns JSON list of projects by calling project_manager.list_projects().
    @mcp.tool  # type: ignore[arg-type]
    async def remotion_list_projects() -> str:
        """
        List all Remotion projects in the workspace.
    
        Returns:
            JSON array of projects
    
        Example:
            projects = await remotion_list_projects()
        """
    
        def _list():
            projects = project_manager.list_projects()
            return json.dumps(projects, indent=2)
    
        return await asyncio.get_event_loop().run_in_executor(None, _list)

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/chrishayuk/chuk-mcp-remotion'

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