download_image
Download images from a URL and save them to a specified path using the MCP server's image downloader functionality.
Instructions
Download an image from a URL to a specified path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | Yes | Path where to save the image | |
url | Yes | URL of the image to download |
Input Schema (JSON Schema)
{
"properties": {
"outputPath": {
"description": "Path where to save the image",
"type": "string"
},
"url": {
"description": "URL of the image to download",
"type": "string"
}
},
"required": [
"url",
"outputPath"
],
"type": "object"
}