display_generated_image
Display generated images in a new tab by providing the image URL. Simplifies visualization and integration for streamlined AI workflows on the MCP-Claude server.
Instructions
This function will display the generated image in a new tab
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageUrl | Yes | The URL of the generated image |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"imageUrl": {
"description": "The URL of the generated image",
"type": "string"
}
},
"required": [
"imageUrl"
],
"type": "object"
}