search_web
Execute web searches via Google using a lightweight, stateless MCP server. Input a query to retrieve structured JSON results, enabling easy integration with MCP-enabled systems.
Instructions
Search the web using Google
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}