Web Search MCPMCP Server27/100 via “concurrent full-page content extraction with dual-strategy fallback”
** - A server that provides local, full web search, summaries and page extration for use with Local LLMs.
Unique: Implements a dual-strategy extraction pipeline where HTTP+cheerio is the fast path for static content, with automatic Playwright fallback for dynamic pages, managed through a pooled browser instance system with health checks. This avoids the overhead of browser automation for 80%+ of pages while maintaining reliability for JavaScript-heavy sites.
vs others: More efficient than browser-only solutions (Puppeteer, Playwright direct) due to HTTP-first strategy reducing browser overhead by ~70%, while more reliable than HTTP-only solutions by automatically handling JavaScript-rendered content without manual intervention.