Loading...

This MCP server provides AI image generation using Amazon Bedrock's Nova Canvas model, offering configurable image parameters and negative prompting.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server provides AI image generation using Amazon Bedrock's Nova Canvas model, offering configurable image parameters and negative prompting.
The server is relatively safe for generating images within the constraints of the Bedrock service. However, proper AWS credential management is crucial, and monitoring resource consumption is recommended to prevent unexpected costs. Prompt injection risks should be considered.
Image generation time depends on image dimensions, quality, and the complexity of the prompt. Higher resolution and quality settings will increase generation time.
Costs are primarily driven by Amazon Bedrock API usage. Be mindful of the number of images generated and the chosen quality level, as premium quality incurs higher costs.
npm install
npm{
"mcpServers": {
"amazon-bedrock": {
"command": "npx",
"args": [
"-y",
"@zxkane/mcp-server-amazon-bedrock"
],
"env": {
"AWS_PROFILE": "your_profile_name", // Optional, only if you want to use a specific profile
"AWS_ACCESS_KEY_ID": "your_access_key", // Optional if using AWS credentials file or IAM role
"AWS_SECRET_ACCESS_KEY": "your_secret_key", // Optional if using AWS credentials file or IAM role
"AWS_REGION": "us-east-1" // Optional, defaults to 'us-east-1'
}
}
}
}AWS_ACCESS_KEY_IDAWS_SECRET_ACCESS_KEYgenerate_imageGenerates images from a text prompt using Amazon Bedrock's Nova Canvas model.
Generates images, which consumes resources and could be misused with malicious prompts.
Environment Variable
cloud
The server is relatively safe for generating images within the constraints of the Bedrock service. However, proper AWS credential management is crucial, and monitoring resource consumption is recommended to prevent unexpected costs. Prompt injection risks should be considered.
Autonomy is limited by the capabilities of the 'generate_image' tool and the constraints of the Amazon Bedrock service.
Production Tip
Monitor AWS Bedrock usage and costs to prevent unexpected charges.
The server requires AWS credentials with permissions to access the Amazon Bedrock service and the Nova Canvas model.
AWS credentials can be configured using environment variables, an AWS credentials file, or an IAM role.
The supported image formats depend on the Amazon Bedrock service and the Nova Canvas model. Refer to the AWS documentation for details.
Yes, you can influence the style of the images using the prompt and negative prompt parameters.
Use the 'premium' quality setting and refine your prompt and negative prompt for better results.
The maximum image size depends on the limitations of the Amazon Bedrock service and the Nova Canvas model. Check the AWS documentation for current limits.
The server returns error messages from the Bedrock API. Implement error handling to catch and log these messages.