zapcap_mcp_get_templates
Retrieve available video processing templates from ZapCap to configure automated workflows for content creation and editing tasks.
Instructions
Get available templates from ZapCap
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/zapcap_mcp_server/server.py:90-98 (handler)The main handler function that executes the tool logic, returning a static dictionary with information on how to access templates via the ZapCap dashboard.def zapcap_mcp_get_templates() -> Dict[str, Any]: return { "result": { "templates_url": "https://platform.zapcap.ai/dashboard/templates", "message": "Templates are available in the ZapCap dashboard with preview images", "instructions": "1. Visit the dashboard URL above\n2. Browse templates with visual previews\n3. Copy the template ID for use in create_task", "note": "Templates include various caption styles, animations, and layouts" } }
- src/zapcap_mcp_server/server.py:89-89 (registration)Registers the zapcap_mcp_get_templates tool with the FastMCP server instance.@mcp.tool(description="Get available templates from ZapCap")