search
Retrieve tailored web search results by specifying queries, domains, time ranges, and AI-generated summaries to enhance information discovery and content extraction.
Instructions
Perform a basic web search. Returns search results including title, content and URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No | Search configuration options, all fields are optional | |
query | Yes | Enter your search query or question |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"additionalProperties": false,
"description": "Search configuration options, all fields are optional",
"properties": {
"days": {
"description": "Limit search to recent days, e.g.: 7 for last 7 days",
"type": "number"
},
"excludeDomains": {
"description": "Exclude these domains from search, e.g.: ['example.com', 'test.com']",
"items": {
"type": "string"
},
"type": "array"
},
"includeAnswer": {
"description": "Include AI-generated answer summary: true or false",
"type": "boolean"
},
"includeDomains": {
"description": "Only search within these domains, e.g.: ['example.com', 'test.com']",
"items": {
"type": "string"
},
"type": "array"
},
"includeImageDescriptions": {
"description": "Include image descriptions: true or false",
"type": "boolean"
},
"includeImages": {
"description": "Include images in results: true or false",
"type": "boolean"
},
"includeRawContent": {
"description": "Include raw webpage content: true or false",
"type": "boolean"
},
"maxResults": {
"description": "Maximum number of results to return, e.g.: 10 for 10 results",
"type": "number"
},
"maxTokens": {
"description": "Maximum number of tokens in response, e.g.: 1000",
"type": "number"
},
"searchDepth": {
"description": "Search depth: basic (simple search) or advanced (in-depth search)",
"enum": [
"basic",
"advanced"
],
"type": "string"
},
"timeRange": {
"description": "Time range: year/y (within 1 year), month/m (within 1 month), week/w (within 1 week), day/d (within 1 day)",
"enum": [
"year",
"month",
"week",
"day",
"y",
"m",
"w",
"d"
],
"type": "string"
},
"topic": {
"description": "Search topic: general (all topics), news (news only), finance (financial content)",
"enum": [
"general",
"news",
"finance"
],
"type": "string"
}
},
"type": "object"
},
"query": {
"description": "Enter your search query or question",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}