fetch_image
Retrieve images from any web URL and return them in a displayable format. Integrates with AI models to access and process images directly from the web.
Instructions
Fetch an image from a URL and return it as an image.
This tool allows Claude to retrieve images from any accessible web URL.
The image is returned in a format that Claude can display.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | Request timeout in seconds | |
url | Yes | The URL to fetch the image from |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"default": 10,
"description": "Request timeout in seconds",
"title": "Timeout",
"type": "integer"
},
"url": {
"description": "The URL to fetch the image from",
"format": "uri",
"minLength": 1,
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "fetch_imageArguments",
"type": "object"
}