search_google
Perform Google searches via SearchAPI MCP Server by providing a query string. Retrieve formatted results including titles, snippets, and links, with options for pagination, sorting, and date filtering.
Instructions
Performs a Google search using SearchAPI.site. Requires a search "query" string, can be able to search multiple keywords that separated by commas. Returns formatted search results including titles, snippets, and links.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | No | Start date for filtering results (format: YYYY-MM-DD) | |
limit | No | Maximum number of results to return (1-100) | |
offset | No | Offset for pagination | |
query | Yes | The search query to perform | |
sort | No | Sort order (e.g., "date:d" for newest first) | |
to_date | No | End date for filtering results (format: YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from_date": {
"description": "Start date for filtering results (format: YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Offset for pagination",
"minimum": 0,
"type": "number"
},
"query": {
"description": "The search query to perform",
"type": "string"
},
"sort": {
"description": "Sort order (e.g., \"date:d\" for newest first)",
"type": "string"
},
"to_date": {
"description": "End date for filtering results (format: YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}