search_ecosia
Perform eco-friendly searches using the Ecosia engine to plant trees, retrieve relevant results, and customize queries with country, safe search, and result limits.
Instructions
Search using Ecosia - the search engine that plants trees
Input Schema
Name | Required | Description | Default |
---|---|---|---|
country | No | Search country (e.g., "US", "DE", "FR") | US |
maxResults | No | Maximum number of results to return (1-20) | |
query | Yes | Search query for Ecosia | |
safeSearch | No | Enable safe search filtering |
Input Schema (JSON Schema)
{
"properties": {
"country": {
"default": "US",
"description": "Search country (e.g., \"US\", \"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 Ecosia",
"type": "string"
},
"safeSearch": {
"default": true,
"description": "Enable safe search filtering",
"type": "boolean"
}
},
"required": [
"query"
],
"type": "object"
}