Google Custom Search Engine MCP Server
by Richard-Weiss
Verified
google_search
Copy
Search the custom search engine using the search term.
Regular query arguments can also be used, like appending site:reddit.com or after:2024-04-30.
If available and/or requested, the links of the search results should be used
in a follow-up request using a different tool to get the full content.
Example: "claude.ai features site:reddit.com after:2024-04-30"
:param search_term: The search term to search for, equaling the q argument in Google's search.
:return: Search results containing the title, link and snippet of the search result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search_term | Yes |
Input Schema (JSON Schema)
{
"properties": {
"search_term": {
"title": "Search Term",
"type": "string"
}
},
"required": [
"search_term"
],
"title": "google_searchArguments",
"type": "object"
}