search_startpage
Conduct private web searches using Startpage to retrieve Google results securely. Specify queries, maximum results, language, and time range for precise, protected search outcomes.
Instructions
Search using Startpage - Google results with privacy protection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Search language (e.g., "en", "de", "fr") | en |
maxResults | No | Maximum number of results to return (1-20) | |
query | Yes | Search query for Startpage | |
timeRange | No | Time range filter: any, day, week, month, year | any |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "en",
"description": "Search language (e.g., \"en\", \"de\", \"fr\")",
"type": "string"
},
"maxResults": {
"default": 10,
"description": "Maximum number of results to return (1-20)",
"maximum": 20,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for Startpage",
"type": "string"
},
"timeRange": {
"default": "any",
"description": "Time range filter: any, day, week, month, year",
"enum": [
"any",
"day",
"week",
"month",
"year"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}