analyze_urls
Analyze and summarize content from one or multiple URLs using Google Gemini URL Context. Optionally add instructions, select a model, or enable grounding with Google Search for enhanced insights.
Instructions
Analyze and summarize the content of given URLs using Google Gemini URL Context. Provide an optional instruction and model.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instruction | No | Optional instruction or task description | |
| model | No | Gemini model id (e.g., gemini-2.5-flash) | |
| urls | Yes | One URL string or an array of URLs (max 20) | |
| use_google_search | No | Enable grounding with Google Search (adds google_search tool alongside URL context) |
Input Schema (JSON Schema)
{
"properties": {
"instruction": {
"description": "Optional instruction or task description",
"type": "string"
},
"model": {
"description": "Gemini model id (e.g., gemini-2.5-flash)",
"type": "string"
},
"urls": {
"description": "One URL string or an array of URLs (max 20)",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"maxItems": 20,
"minItems": 1,
"type": "array"
}
]
},
"use_google_search": {
"description": "Enable grounding with Google Search (adds google_search tool alongside URL context)",
"type": "boolean"
}
},
"required": [
"urls"
],
"type": "object"
}