mcp-server-bedrock-image
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AWS_REGION | No | AWS region for Bedrock | us-west-2 |
| SAVE_METADATA | No | Save JSON metadata alongside images | true |
| BEDROCK_ENDPOINT | No | Override Bedrock runtime endpoint | |
| BEDROCK_AUTH_MODE | No | Auth mode: boto3 or bearer | boto3 |
| IMAGE_STORAGE_DIRECTORY | No | Where to save generated images | /tmp/mcp-server-bedrock-image |
| AWS_BEARER_TOKEN_BEDROCK | No | Bedrock API key (bearer mode only) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_imageC | Generate a high-quality image using Stable Image Ultra on Bedrock. |
| generate_image_coreB | Generate an image using Stable Image Core (faster, lower cost). |
| remove_backgroundB | Remove the background from an image. |
| style_transferC | Apply the style of a reference image to a source image. |
| search_and_recolorC | Recolor specific elements in an image. |
| outpaintB | Extend an image in any direction while maintaining visual consistency. |
| search_and_replaceC | Replace objects or elements in an image. |
| upscale_fastC | Upscale image resolution by 4x. |
| upscale_creativeB | Creatively upscale image up to 4K resolution. |
| compose_brandedC | Overlay logo with composition-aware placement. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool targets a distinct image operation: generation, editing, style transfer, upscaling, etc. The two generation tools are clearly differentiated by model (Ultra vs Core) and trade-off (quality vs speed), so there is no real ambiguity.
Most names follow a verb_noun or verb_adverb pattern in snake_case (e.g., generate_image, remove_background, upscale_fast). 'outpaint' is a slight deviation as a single verb, but it's still intuitive and consistent with the action-oriented style.
With 10 tools, the server is well-scoped for an image generation/editing toolkit. Each tool covers a separate capability with no unnecessary redundancy, making the count feel justified and manageable.
The toolkit covers the core image lifecycle: generation, editing (style, recolor, replace, background removal), extension (outpaint), enhancement (upscaling), and branding (compose_branded). No critical gaps are apparent for its intended purpose.