KosmoKrator

data

Bannerbear MCP, CLI, and Lua Integration for AI Agents

Bannerbear integration docs for AI agents: MCP gateway setup, Bannerbear CLI commands, Lua API reference, credentials, and function schemas.

Bannerbear for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
bannerbear.bannerbear_create_image Write write 6 Generate an image from a Bannerbear template. Provide a template ID and an array of modifications to customize text, images, colors, and other layers. The image is generated asynchronously — use get_image to check status and retrieve the final URL.
bannerbear.bannerbear_get_image Read read 1 Retrieve the status and download URL of a previously created Bannerbear image. Images are generated asynchronously, so poll this endpoint until status is "completed".
bannerbear.bannerbear_list_images Read read 2 List previously created Bannerbear images. Returns image UIDs, statuses, and download URLs. Supports pagination via page and limit parameters.
bannerbear.bannerbear_list_collections Read read 2 List Bannerbear collections. Collections are groups of images generated from a single template with different data. Supports pagination via page and limit parameters.
bannerbear.bannerbear_create_video Write write 5 Generate a video from a Bannerbear template. Provide a template ID and an array of modifications per scene. The video is generated asynchronously — use get_video to check status and retrieve the final URL.
bannerbear.bannerbear_get_video Read read 1 Retrieve the status and download URL of a previously created Bannerbear video. Videos are generated asynchronously, so poll this endpoint until status is "completed".
bannerbear.bannerbear_list_templates Read read 0 List all available Bannerbear templates. Returns template UIDs, names, dimensions, and preview URLs. Use a template UID with create_image or create_video.
bannerbear.bannerbear_get_template Read read 1 Get details for a specific Bannerbear template, including all available modification layers (text, image, color, etc.). Use this to discover which layer names to use when calling create_image or create_video.
bannerbear.bannerbear_create_animated_gif Write write 4 Generate an animated GIF from a Bannerbear template. Provide a template ID and an array of modifications per frame. The GIF is generated asynchronously — use get_image with the returned ID to check status.
bannerbear.bannerbear_get_current_user Read read 0 Get the authenticated Bannerbear account details, including plan info and usage.