letzai_upscale_image
Enhance image resolution and clarity using the Letz AI MCP server. Provide an image ID or URL, set upscaling strength (1-3), and generate high-quality versions.
Instructions
Upscale an image using the LetzAI public api
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageId | No | The unique identifier of the image to be upscaled. | |
imageUrl | No | The URL of the image to be upscaled. Must be a publicly available URL. | |
strength | Yes | The strength of the upscaling process. Min. 1, Max. 3. |
Input Schema (JSON Schema)
{
"properties": {
"imageId": {
"description": "The unique identifier of the image to be upscaled.",
"type": "string"
},
"imageUrl": {
"description": "The URL of the image to be upscaled. Must be a publicly available URL.",
"type": "string"
},
"strength": {
"default": 1,
"description": "The strength of the upscaling process. Min. 1, Max. 3.",
"type": "number"
}
},
"required": [
"strength"
],
"type": "object"
}