generateImage
Create custom images using text prompts with specific aspect ratios and output formats. Integrated with the Gemini API for cloud-powered image generation, enabling hybrid local-cloud workflows through the GeminiMcpServer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aspectRatio | No | ||
outputFormat | No | ||
prompt | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"aspectRatio": {
"type": "string"
},
"outputFormat": {
"type": "string"
},
"prompt": {
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}