MCP Web Search Pro
Allows searching the web via DuckDuckGo, with configurable result limits and region selection.
Allows fetching archived snapshots of web pages from the Wayback Machine, including timestamped versions.
Allows fetching transcripts of YouTube videos, either from a URL or video ID, with optional timestamps.
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 Search Prosearch for latest AI research papers from 2025"
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 Pro
An extended, self-hosted web research server for MCP-compatible clients. It gives an AI assistant tools for discovering web pages, extracting readable content, rendering JavaScript applications, using the Internet Archive when a page is unavailable, and reading YouTube captions.
The service is designed for local or trusted-network use. It is stateless,
requires no API keys, and exposes the MCP Streamable HTTP transport on port
8082. It can run beside a lighter web-search MCP server on another port.
Runs as a separate container on port 8082 alongside the lightweight
mcp-web-search (port 8081). Point clients at whichever fits the task — if pro
ever feels sluggish, the lightweight one is still right there untouched.
Features
Web search through DuckDuckGo, with result limits and region selection.
Readable HTML extraction to Markdown with navigation and boilerplate removed.
Automatic PDF detection and text extraction.
Headless Chromium rendering for React, Vue, SPA, and other JS-heavy pages.
Wayback Machine snapshots for unavailable or changed pages.
YouTube transcripts from URLs or video IDs, with optional timestamps.
/healthendpoint for container and process checks.Stateless Streamable HTTP and stdio MCP transports.
Related MCP server: Basic MCP Tools
MCP tools
Tool | Description |
| Search the web via DuckDuckGo (ddgs). Args: |
| Fetch a URL → Markdown. Auto-detects PDFs and extracts text. Uses trafilatura for clean article extraction (strips nav/ads/boilerplate). Args: |
| Render a JS-heavy / SPA page with headless Chromium, then extract text. Use when |
| Fetch the latest (or timestamped) archived snapshot of a URL from the Wayback Machine. Retries on transient 503s. Args: |
| Fetch a YouTube video's transcript. Accepts a full YouTube URL or bare 11-char video id. Args: |
Use web_fetch for ordinary pages because it is faster. Use web_fetch_js
when the first tool returns an empty shell or incomplete content because the
site depends on client-side JavaScript.
Run with Docker
docker compose up -d --buildVerify:
curl http://localhost:8082/health # → {"status":"ok"}Logs / restart / stop:
docker compose logs -f
docker compose restart
docker compose downThe first build is large (~400MB) because it downloads Chromium for Playwright. Subsequent builds reuse the cached layer.
Connecting clients
Point any MCP-compatible client at:
http://<server-host>:8082/mcpNo headers or API keys are required. The server runs in stateless mode.
Run locally without Docker
Python 3.12 is recommended:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
playwright install --with-deps chromium
python server.pyRun the HTTP transport directly with:
python server.py --sse --host 127.0.0.1 --port 8082Despite the historical --sse option name, the HTTP implementation uses the
stateless MCP Streamable HTTP transport.
Performance notes
Only
web_fetch_jsis heavy at runtime — it launches Chromium per call (~5–15s). The other four tools are lightweight pure-Python and stay snappy.shm_size: 1gbindocker-compose.ymlprevents Chromium sandbox crashes inside the container.For routine non-JS pages, use
web_fetch(fast); reserveweb_fetch_jsfor React/Vue/SPA sites that render content with JavaScript.
Configuration
To change the port, edit both the ports: mapping and the command: in
docker-compose.yml. To enable raw request/response logging for debugging,
switch to the commented --verbose command: line.
Validation
This repository is intended to be pushed as source code and Docker build configuration. There is currently no automated test suite. The recommended project checks are:
git diff --check
docker compose config
docker compose up -d --build
curl http://localhost:8082/health
docker compose logs --tail=100
docker compose downDo not publish this service directly to the public internet without adding
authentication or placing it behind a trusted reverse proxy. The HTTP mode
binds to 0.0.0.0, permits requests without API keys, and allows all origins;
that is convenient for local MCP clients but is not an access-control layer.
Security and operating notes
web_fetchandweb_fetch_jscan request arbitrary HTTP(S) URLs. Restrict network access or add URL/DNS safeguards if untrusted users can call the service.Keep
--verbosedisabled outside short local debugging sessions because it logs request and response bodies.Dependencies use minimum-version constraints. Pin or lock versions before relying on reproducible production builds.
Files
server.py— the MCP server (5 tools)requirements.txt—mcp,httpx,beautifulsoup4,markdownify,ddgs,trafilatura,pypdf,youtube-transcript-api,playwrightDockerfile— Python 3.12-slim + Playwright Chromiumdocker-compose.yml— service on port 8082 withshm_size: 1gb
License
No license file is currently included. Add a license before accepting external contributions or redistributing the project.
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
- Alicense-qualityAmaintenanceZero-auth multi-source research MCP server that enables web search, reading URLs, PDFs, GitHub repos, and querying Hacker News, Stack Overflow, Semantic Scholar, and YouTube transcripts without API keys.10Apache 2.0
- Flicense-qualityBmaintenanceA self-hosted MCP server providing private web search, web page fetching, and current date/time tools, powered by a bundled SearXNG instance for API-key-free local search.2
- Alicense-qualityCmaintenanceA fully local MCP server that provides web search via self-hosted SearXNG and page-to-markdown conversion (static and JS-rendered), all aggregated behind a single endpoint for use with AI assistants.MIT
- Alicense-qualityBmaintenanceMCP server enabling local-first web search, fetch, extract, and caching with citeable excerpts, no API key required. Supports research workflows for agents and apps.323MIT
Related MCP Connectors
An MCP server for deep research or task groups
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
An MCP server that gives your AI access to the source code and docs of all public github repos
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/AngelN-Halo/mcp-web-search-pro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server