media
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.
10 functions 7 read 3 write API key auth
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.
Machine-Readable Metadata
- integration_slug
bannerbear- route_slug
bannerbear- package
bannerbear- auth_strategy
api_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Bannerbear CLIHeadless setup and direct function calls. Bannerbear MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Bannerbear MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Bannerbear.
Claude Code Bannerbear MCP setup for Claude Code. Cursor Bannerbear MCP setup for Cursor. Codex Bannerbear MCP setup for Codex. OpenAI Agents Bannerbear MCP setup for OpenAI Agents SDK. Claude Agent SDK Bannerbear MCP setup for Claude Agent SDK. Vercel AI SDK Bannerbear MCP setup for Vercel AI SDK. LangChain Bannerbear MCP setup for LangChain. LangGraph Bannerbear MCP setup for LangGraph. CrewAI Bannerbear MCP setup for CrewAI. MCP clients Bannerbear MCP setup for Generic MCP Clients.
Bannerbear CLI Matrix
Use these pages for direct Bannerbear CLI workflows in scripts, CI, cron, and agent wrappers.
CI Bannerbear CLI for CI. Cron Jobs Bannerbear CLI for cron jobs. Shell Scripts Bannerbear CLI for shell scripts. Headless Automation Bannerbear CLI for headless automation. Coding Agents Bannerbear CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |