download_image
Download and save images from URLs directly to a specified absolute path, facilitating image management within the ComfyUI MCP Server.
Instructions
Download an image from a URL and save it to a file.
Args:
url: The URL of the image to download.
save_path: The absolute path to save the image to. Must be an absolute path, otherwise the image will be saved relative to the server location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
save_path | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"save_path": {
"title": "Save Path",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url",
"save_path"
],
"title": "download_imageArguments",
"type": "object"
}