mcp-web-search
Provides web search using DuckDuckGo as a fallback search provider, returning titles, URLs, and descriptions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-web-searchwhat are the latest developments in artificial intelligence?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Web Search Server
A Model Context Protocol (MCP) server that provides web search capabilities, deployable on Render.
Built with Python using the official MCP SDK, supporting SSE (Server-Sent Events) transport for maximum compatibility with MCP clients like AIPI, Claude Desktop, and others.
Tools exposed
Tool | Description |
| Search the web. Returns titles, URLs, and descriptions. |
| Fetch and extract text content from any URL. |
Related MCP server: MCP Search & Fetch
๐ Deploy to Render (step-by-step)
1. Push this repo to 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. Create a new Web Service on Render
Go to render.com โ New โ Web Service
Connect your GitHub repo (
mcp-web-search)Render will auto-detect
render.yamlโ click ApplySet environment variables in the Render dashboard:
Variable | Required | Description |
| Recommended | Get free at serper.dev โ 2,500 queries/month free (Google results) |
| Optional | Set to any secret string to password-protect your server |
Click Create Web Service โ Render will build and deploy automatically.
Your server URL will be: https://mcp-web-search.onrender.com (or similar)
๐ Connect to AIPI
In AIPI's "Add Custom MCP" dialog, paste this configuration:
{
"mcpServers": {
"web-search": {
"type": "sse",
"url": "https://YOUR-SERVICE.onrender.com/sse"
}
}
}Replace YOUR-SERVICE with your actual Render service name (e.g., mcp-web-search-j73g).
Other MCP Clients
Works with any MCP client that supports SSE transport:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"web-search": {
"type": "sse",
"url": "https://YOUR-SERVICE.onrender.com/sse"
}
}
}๐ Search Providers
Provider | Key required | Quality | Limit |
Serper.dev | Yes (free) | โญโญโญโญโญ | 2,500 queries/month free (Google results) |
DuckDuckGo | No | โญโญโญ | Unlimited (fallback) |
Set SERPER_API_KEY in Render env vars to use Serper. The server falls back to DuckDuckGo automatically if the key is absent.
๐งช Test locally
pip install -r requirements.txt
SERPER_API_KEY=your_key python server.pyHealth check:
curl http://localhost:3000/The server runs on port 3000 by default. Set PORT environment variable to change it.
โ ๏ธ Free tier note
Render's free tier spins down after 15 minutes of inactivity (cold start ~30s). Upgrade to the Starter plan ($7/mo) to keep it always-on.
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