bannerbear
Server Details
Generate images, videos, and screenshots from your Bannerbear templates via AI.
- Status
- Unhealthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- m190/usefulapi-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
15 toolsbannerbear_create_collectionCreate collectionDestructiveInspect
Generate a collection of images from a template set (additive; CONSUMES API quota). Async: returns a pending collection whose uid you poll with bannerbear_get_collection (image_urls map populates on completion). API: POST /v2/collections.
| Name | Required | Description | Default |
|---|---|---|---|
| metadata | No | Arbitrary metadata string echoed back on the object. | |
| webhook_url | No | URL Bannerbear will POST the finished collection to when done. | |
| template_set | Yes | Template set uid to render. | |
| modifications | No | Layer overrides applied to the template. Array of objects, one per layer, each keyed by `name` (the layer name) plus the props to set, e.g. { name: "title", text: "Hello", color: "#FF0000" } or { name: "photo", image_url: "https://..." }. Only include layers you want to change. |
bannerbear_create_imageCreate imageDestructiveInspect
Generate an image from a template (additive; CONSUMES API quota). Async by default: returns a pending image whose uid you poll with bannerbear_get_image. Set synchronous:true to block and receive the finished image (image_url populated) via the sync host. API: POST /v2/images.
| Name | Required | Description | Default |
|---|---|---|---|
| metadata | No | Arbitrary metadata string echoed back on the object. | |
| template | Yes | Template uid to render. | |
| render_pdf | No | Also render a PDF version of the image. | |
| synchronous | No | When true, POST to the sync host and wait for the completed image. Default false (202 pending). | |
| transparent | No | Render with a transparent background (PNG). | |
| webhook_url | No | URL Bannerbear will POST the finished image to when done. | |
| modifications | No | Layer overrides applied to the template. Array of objects, one per layer, each keyed by `name` (the layer name) plus the props to set, e.g. { name: "title", text: "Hello", color: "#FF0000" } or { name: "photo", image_url: "https://..." }. Only include layers you want to change. |
bannerbear_create_screenshotCreate screenshotDestructiveInspect
Capture a screenshot of a web page (additive; CONSUMES API quota). Async by default: returns a pending screenshot to poll. Set synchronous:true to block and receive the finished screenshot via the sync host. API: POST /v2/screenshots.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public URL of the web page to screenshot. | |
| width | No | Viewport width in pixels. | |
| height | No | Viewport height in pixels. | |
| mobile | No | Render with a mobile viewport. | |
| synchronous | No | When true, POST to the sync host and wait for the completed screenshot. Default false (202 pending). | |
| webhook_url | No | URL Bannerbear will POST the finished screenshot to when done. |
bannerbear_create_videoCreate videoDestructiveInspect
Generate a video from a video template (additive; CONSUMES API quota). Async: returns a pending video whose uid you poll with bannerbear_get_video (video_url populates on completion). API: POST /v2/videos.
| Name | Required | Description | Default |
|---|---|---|---|
| metadata | No | Arbitrary metadata string echoed back on the object. | |
| webhook_url | No | URL Bannerbear will POST the finished video to when done. | |
| modifications | No | Layer overrides applied to the template. Array of objects, one per layer, each keyed by `name` (the layer name) plus the props to set, e.g. { name: "title", text: "Hello", color: "#FF0000" } or { name: "photo", image_url: "https://..." }. Only include layers you want to change. | |
| video_template | Yes | Video template uid to render. | |
| input_media_url | No | URL of the source media (e.g. an audio/video file) to build from. |
bannerbear_get_accountGet accountRead-onlyInspect
Get account details and usage: api_usage, api_quota, and paid_plan_name. API: GET /v2/account.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
bannerbear_get_collectionGet collectionRead-onlyInspect
Get a single collection — poll this to check an async render (status: pending | completed | failed; image_urls map populates on completion). API: GET /v2/collections/{uid}.
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Collection uid (from a create_collection response). |
bannerbear_get_imageGet imageRead-onlyInspect
Get a single generated image — poll this to check an async render (status: pending | completed | failed; image_url populates on completion). API: GET /v2/images/{uid}.
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Image uid (from a create_image response). |
bannerbear_get_templateGet templateRead-onlyInspect
Get a single template incl. its available_modifications (the layers you can override when generating). API: GET /v2/templates/{uid}.
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Template uid. |
bannerbear_get_template_setGet template setRead-onlyInspect
Get a single template set and the templates it contains. API: GET /v2/template_sets/{uid}.
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Template set uid. |
bannerbear_get_videoGet videoRead-onlyInspect
Get a single generated video — poll this to check an async render (status: pending | completed | failed; video_url populates on completion). API: GET /v2/videos/{uid}.
| Name | Required | Description | Default |
|---|---|---|---|
| uid | Yes | Video uid (from a create_video response). |
bannerbear_list_effectsList effectsRead-onlyInspect
List the image effects available for use in template modifications. API: GET /v2/effects.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
bannerbear_list_fontsList fontsRead-onlyInspect
List the fonts available for use in template modifications. API: GET /v2/fonts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
bannerbear_list_imagesList imagesRead-onlyInspect
List generated images in the project (paginated). API: GET /v2/images.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination. |
bannerbear_list_templatesList templatesRead-onlyInspect
List the templates in the project. Filter/paginate with page, tag, name, and limit. API: GET /v2/templates.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter templates by tag. | |
| name | No | Filter templates by name (substring match). | |
| page | No | Page number for pagination. | |
| limit | No | Number of templates per page. |
bannerbear_list_template_setsList template setsRead-onlyInspect
List the template sets in the project (used by collections). API: GET /v2/template_sets.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination. |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!