Skip to main content
Glama
williamvd4

Web Search MCP Server

by williamvd4

Servidor MCP de búsqueda web

Un servidor de Protocolo de Contexto de Modelo (MCP) que permite la búsqueda web gratuita utilizando los resultados de búsqueda de Google, sin necesidad de claves API.

Características

  • Busque en la web utilizando los resultados de búsqueda de Google

  • No se requieren claves API ni autenticación

  • Devuelve resultados estructurados con títulos, URL y descripciones.

  • Número configurable de resultados por búsqueda

Related MCP server: search-mcp

Instalación

  1. Clonar o descargar este repositorio

  2. Instalar dependencias:

npm install
  1. Construir el servidor:

npm run build
  1. Agregue el servidor a su configuración de MCP:

Para VSCode (extensión de Claude Dev):

{
  "mcpServers": {
    "web-search": {
      "command": "node",
      "args": ["/path/to/web-search/build/index.js"]
    }
  }
}

Para Claude Desktop:

{
  "mcpServers": {
    "web-search": {
      "command": "node",
      "args": ["/path/to/web-search/build/index.js"]
    }
  }
}

Uso

El servidor proporciona una única herramienta llamada search que acepta los siguientes parámetros:

{
  "query": string,    // The search query
  "limit": number     // Optional: Number of results to return (default: 5, max: 10)
}

Ejemplo de uso:

use_mcp_tool({
  server_name: "web-search",
  tool_name: "search",
  arguments: {
    query: "your search query",
    limit: 3  // optional
  }
})

Ejemplo de respuesta:

[
  {
    "title": "Example Search Result",
    "url": "https://example.com",
    "description": "Description of the search result..."
  }
]

Limitaciones

Dado que esta herramienta utiliza el raspado web de los resultados de búsqueda de Google, hay algunas limitaciones importantes que se deben tener en cuenta:

  1. Limitación de frecuencia : Google podría bloquear temporalmente las solicitudes si se realizan demasiadas búsquedas en poco tiempo. Para evitarlo:

    • Mantenga las búsquedas a una frecuencia razonable

    • Utilice el parámetro límite con prudencia

    • Considere implementar retrasos entre búsquedas si es necesario

  2. Precisión del resultado :

    • La herramienta se basa en la estructura HTML de Google, que puede cambiar.

    • Es posible que a algunos resultados les falten descripciones u otros metadatos.

    • Es posible que los operadores de búsqueda complejos no funcionen como se espera

  3. Consideraciones legales :

    • Esta herramienta está destinada para uso personal.

    • Respete las condiciones de servicio de Google

    • Considere implementar una limitación de velocidad adecuada para su caso de uso

Contribuyendo

¡No dudes en enviarnos problemas y solicitudes de mejora!

Available Tools

1 tool

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool update
    • First observedsearch

TDQS

B3.1/5.0
Disambiguation5/5

With only one tool, there is no possibility of ambiguity or overlap between tools. The tool's purpose is singular and clear, so an agent cannot misselect between multiple options.

Naming Consistency5/5

A single tool inherently has perfect naming consistency, as there are no other tools to compare it against for patterns. The name 'search' is straightforward and appropriate for its function.

Tool Count2/5

One tool is too few for a server named 'Web Search MCP Server', which suggests a broader scope like searching, filtering, or managing search results. A single search tool feels thin and limits functionality, making it borderline inappropriate for the implied domain.

Completeness2/5

The tool surface is severely incomplete for web search functionality. It only provides a basic search tool, missing obvious operations like filtering results, getting details, saving searches, or handling pagination, which are common in search domains and could lead to agent failures in complex tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Enables web searching and content scraping through Google Custom Search API. Provides tools to search the internet, extract webpage content, and automatically scrape search results for comprehensive information gathering.
    3
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables web search capabilities using DuckDuckGo's free API without requiring authentication or API keys.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables web searching through Google, DuckDuckGo, and Bing using a headless Chrome browser, returning structured results with titles, URLs, and snippets. Also supports fetching and extracting text content from any webpage.
    13
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables free web searching using Google search results without the need for API keys or authentication. It returns structured data including titles, URLs, and descriptions with configurable result limits.
    43
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/williamvd4/web-search'

If you have feedback or need assistance with the MCP directory API, please join our Discord server