Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Model Context Protocol (MCP) server for free web searching using Google results, no API keys needed, returning structured data.
GitHub MCP Server enables advanced automation and interaction capabilities for developers and tools using Model Context Protocol.
A Model Context Protocol (MCP) server that enables free web searching using Google search results, with no API keys required.
The server provides a single tool named search
that accepts the following parameters:
{
"query": string, // The search query
"limit": number // Optional: Number of results to return (default: 5, max: 10)
}
Example usage:
use_mcp_tool({
server_name: "web-search",
tool_name: "search",
arguments: {
query: "your search query",
limit: 3 // optional
}
})
Example response:
[
{
"title": "Example Search Result",
"url": "https://example.com",
"description": "Description of the search result..."
}
]