mcp-web-search
MCP Web Search Server
Un servidor de Model Context Protocol (MCP) que proporciona capacidades de búsqueda web, desplegable en Render.
Construido con Python usando el SDK oficial de MCP, con soporte para transporte SSE (Server-Sent Events) para máxima compatibilidad con clientes MCP como AIPI, Claude Desktop y otros.
Herramientas expuestas
Herramienta | Descripción |
| Busca en la web. Devuelve títulos, URLs y descripciones. |
| Obtiene y extrae el contenido de texto de cualquier URL. |
Related MCP server: MCP Search & Fetch
🚀 Desplegar en Render (paso a paso)
1. Sube este repositorio a GitHub
cd mcp-web-search
git init
git add .
git commit -m "Initial commit"
# create a repo on github.com, then:
git remote add origin https://github.com/YOUR_USERNAME/mcp-web-search.git
git push -u origin main2. Crea un nuevo Web Service en Render
Ve a render.com → New → Web Service
Conecta tu repositorio de GitHub (
mcp-web-search)Render detectará automáticamente
render.yaml— haz clic en ApplyConfigura las variables de entorno en el panel de Render:
Variable | Obligatoria | Descripción |
| Recomendada | Obténla gratis en serper.dev — 2,500 consultas/mes gratis (resultados de Google) |
| Opcional | Establézcala a cualquier cadena secreta para proteger tu servidor con contraseña |
Haz clic en Create Web Service — Render compilará y desplegará automáticamente.
La URL de tu servidor será: https://mcp-web-search.onrender.com (o similar)
🔌 Conectar a AIPI
En el diálogo "Add Custom MCP" de AIPI, pega esta configuración:
{
"mcpServers": {
"web-search": {
"type": "sse",
"url": "https://YOUR-SERVICE.onrender.com/sse"
}
}
}Reemplaza YOUR-SERVICE con el nombre real de tu servicio de Render (p. ej., mcp-web-search-j73g).
Otros clientes MCP
Funciona con cualquier cliente MCP que admita transporte SSE:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"web-search": {
"type": "sse",
"url": "https://YOUR-SERVICE.onrender.com/sse"
}
}
}🔍 Proveedores de búsqueda
Proveedor | Clave requerida | Calidad | Límite |
Serper.dev | Sí (gratis) | ⭐⭐⭐⭐⭐ | 2,500 consultas/mes gratis (resultados de Google) |
DuckDuckGo | No | ⭐⭐⭐ | Ilimitado (respaldo) |
Configura SERPER_API_KEY en las variables de entorno de Render para usar Serper. El servidor usa DuckDuckGo automáticamente si la clave no está presente.
🧪 Probar localmente
pip install -r requirements.txt
SERPER_API_KEY=your_key python server.pyComprobación de estado:
curl http://localhost:3000/El servidor se ejecuta en el puerto 3000 por defecto. Configura la variable de entorno PORT para cambiarlo.
⚠️ Nota sobre el plan gratuito
El plan gratuito de Render se apaga después de 15 minutos de inactividad (arranque en frío ~30s). Actualiza al plan Starter ($7/mes) para mantenerlo siempre activo.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides web search and page fetch capabilities using a browser-based approach, enabling LLMs to search DuckDuckGo, Google, or Yandex and retrieve rendered HTML from URLs.3MIT
- AlicenseNot gradedqualityBmaintenanceProvides web search and page fetching capabilities using Ollama's API.MIT
- AlicenseNot gradedqualityCmaintenanceSelf-hosted web search and page fetch service using SearXNG metasearch and Scrapling browser rendering, exposing MCP tools for direct agent use.MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables web searching using the Serper API for Google search results, with optional web page content fetching.2MIT
Related MCP Connectors
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Read any web page as clean Markdown for AI agents: fetch, search, metadata, links. SSRF-safe.
The best web search for your AI Agent
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Komplex23/mcp-web-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server