generate-image
Create custom images by providing a text prompt, powered by Replicate and integrated into the MCP-Claude server for streamlined AI workflows.
Instructions
Generate an image using Replicate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | Prompt for the image generation |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt": {
"description": "Prompt for the image generation",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}