The Web Search MCP Server provides a simple way to integrate Google search functionality into your AI workflows without requiring any API keys or authentication. This server scrapes Google search results and returns structured data with titles, URLs, and descriptions. By using this MCP, you can enable your AI assistants to search the web for current information, enhancing their capabilities with real-time data access. The server is lightweight, easy to configure, and offers customizable result limits to suit your specific needs.
The Web Search MCP Server allows you to perform Google searches directly from your AI workflows without requiring any API keys. This server scrapes Google search results and returns them in a structured format that's easy to process.
To install the Web Search MCP Server:
git clone https://github.com/pskill9/web-search.git
cd web-search
npm install
npm run build
For VSCode (Claude Dev Extension):
{
"mcpServers": {
"web-search": {
"command": "node",
"args": ["/path/to/web-search/build/index.js"]
}
}
}
For Claude Desktop:
{
"mcpServers": {
"web-search": {
"command": "node",
"args": ["/path/to/web-search/build/index.js"]
}
}
}
The search
tool allows you to perform web searches using Google.
Parameters:
query
(string, required): The search query to executelimit
(number, optional): Number of results to return (default: 5, max: 10)Returns: An array of search results, each containing:
title
: The title of the search resulturl
: The URL of the search resultdescription
: A brief description of the search resultExample Usage:
use_mcp_tool({
server_name: "web-search",
tool_name: "search",
arguments: {
query: "latest AI developments",
limit: 3
}
})
Example Response:
[
{
"title": "Recent Advances in Artificial Intelligence - Example Site",
"url": "https://example.com/ai-developments",
"description": "A comprehensive overview of the latest developments in artificial intelligence research and applications..."
},
{
"title": "AI News and Updates - Another Example",
"url": "https://another-example.com/ai-news",
"description": "Stay updated with the most recent breakthroughs in AI technology..."
},
{
"title": "The Future of AI - Third Example",
"url": "https://third-example.com/future-ai",
"description": "Exploring the potential future directions of artificial intelligence..."
}
]
Since this tool uses web scraping of Google search results, there are some important limitations to be aware of:
Rate Limiting: Google may temporarily block requests if too many searches are performed in a short time. To avoid this:
Result Accuracy:
Legal Considerations: