google_search_lens
Perform targeted Google searches by specifying URLs, countries, and languages to retrieve relevant web information via the Serper MCP Server.
Instructions
Search Google for results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gl | No | The country to search in, e.g. us, uk, ca, au, etc. | |
hl | No | The language to search in, e.g. en, es, fr, de, etc. | |
url | Yes | The url to search |
Input Schema (JSON Schema)
{
"properties": {
"gl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The country to search in, e.g. us, uk, ca, au, etc.",
"title": "Gl"
},
"hl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The language to search in, e.g. en, es, fr, de, etc.",
"title": "Hl"
},
"url": {
"description": "The url to search",
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "LensRequest",
"type": "object"
}