serp-it
Integrates AOL search to aggregate results from search.aol.com, with region support and redirect cleanup.
Integrates Brave search for privacy-focused results with rapid updates.
Integrates DuckDuckGo search for non-personalized, global search results.
Integrates Startpage search for Google-backed privacy results.
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., "@serp-itsearch for recent breakthroughs in renewable energy"
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.
serp-it
serp-it is an MCP (Model Context Protocol) server that exposes web search and optional page rendering capabilities through a simple stdio interface.
Features
π Multi-Engine Search: Aggregates results from 7 search engines (AOL, Brave, Bing, DuckDuckGo, Yahoo, Startpage, Yandex)
π PDF Support: Automatically detects and extracts text from PDF documents
π Page Rendering: Converts web pages to Markdown using headless Chromium
β»οΈ Browser Pooling: Efficient browser instance management for better performance
πΊοΈ Region Support: Search with locale/region codes (e.g., en-US, en-GB)
π Result Deduplication: Merges duplicate results across engines
π¦ Docker Ready: Includes Dockerfile for deployment with supergateway
Related MCP server: SearXNG MCP Server
AOL Search Integration
The AOL search engine often flies under the radar but returns unique SERP blends that combine Yahoo ranking signals with syndicated content. serp-it includes first-class AOL support with the following behavior:
Requests are issued against
https://search.aol.com/aol/searchwith JavaScript disabled (nojs=1) so that results are stable for scraping.Region hints are translated into
Accept-Languageheaders (en_US->en-US), giving you localized snippets where AOL supports them.Result URLs are unwrapped with the same redirect decoder used for Yahoo, ensuring clean, direct links instead of AOL's tracking intermediaries.
Duplicate links within the same result set are filtered before they reach the aggregator, protecting downstream clients from redundant entries.
If AOL should be temporarily disabled (for example during rate limiting) you can comment it out in src/SearchAggregator.ts and the rest of the stack will continue operating.
Supported Engines
Engine | File | Notes |
AOL |
| HTML response, Yahoo-style redirect cleanup. |
Brave |
| Rapid updates, privacy-focused snippets. |
Bing |
| Provides richer entity cards. |
DuckDuckGo |
| No personalization, global focus. |
Yahoo |
| Often mirrors AOL but with different ordering. |
Startpage |
| Google-backed privacy results. |
Yandex |
| Strong non-English indexing. |
Installation
npm install
npm run buildPlaywright Setup
# Install Chromium used by Playwright
npm run playwright:install
# (Linux/WSL) install required system libraries
npm run playwright:install-depsUsage
Run as MCP Server (stdio)
npm startThe server exchanges JSON-RPC 2.0 messages over stdio.
Tools
search: Aggregate results from the configured engines.search_fetch: Search and render the top matches to Markdown.
Inputs:
query(required string): Search query text.region(optional string): Locale code such asen-USorfr-FR.maxFetch(optional number,search_fetchonly): Number of rendered pages (default 5, max 10).
Outputs:
Array of enriched search results (title, URL, snippet, engine metadata).
Separate error lists for engine failures and fetch/render issues.
Development
# Rebuild on change
npm run dev
# Remove build artefacts
npm run clean
# Full clean build
npm run rebuild
# Run the integration tests
npm testDocker Deployment
With supergateway
docker build -t serp-it-mcp .
docker run -p 8080:8080 serp-it-mcpThe container image bundles the MCP server alongside supergateway to expose SSE/HTTP endpoints on port 8080.
Environment Variables
PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH: Override the Chromium binary path.PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: Set to1to reuse a preinstalled browser.
Configuration
Claude Desktop (direct stdio)
Add the server to claude_desktop_config.json when running it locally via node:
{
"mcpServers": {
"serp-it": {
"command": "node",
"args": ["/path/to/serp-it/dist/index.js"]
}
}
}Claude Desktop (Docker + supergateway SSE)
When you run the provided container (or start-gateway.sh), supergateway exposes an SSE bridge at http://localhost:8080/sse. Point Claude Desktop at that endpoint by updating claude_desktop_config.json:
{
"mcpServers": {
"serp-it-docker": {
"type": "sse",
"url": "http://localhost:8080/sse"
}
}
}Adjust the host/port if you map the container differently. You can also add a headers object inside the block if your gateway requires authentication.
Claude Desktop (spawn with npx)
You can let Claude Desktop launch the server through npx, which downloads (or reuses) the published package on demand:
{
"mcpServers": {
"serp-it": {
"command": "npx",
"args": ["-y", "serp-it"]
}
}
}If you are working from a clone of this repository, run npm run build first so that the serp-it binary points at dist/index.js.
Generic MCP Client (TypeScript)
import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';
const transport = new StdioClientTransport({
command: 'node',
args: ['./dist/index.js']
});
const client = new Client({
name: 'my-client',
version: '1.0.0'
}, {
capabilities: {}
});
await client.connect(transport);Project Structure
src/index.ts: Entry point for the MCP server.src/SearchAggregator.ts: Orchestrates engines and deduplication.src/PageRenderer.ts: Manages Playwright rendering and Markdown conversion.src/PdfParser.ts: Converts downloaded PDFs into text.src/BrowserPool.ts: Pools Chromium instances.src/ISearchEngine.ts: Interface definition for search engines.src/SearchResult.ts: Result data structure shared across engines.src/EngineUtils.ts: Shared scraping helpers.src/engines/Aol.ts: AOL search implementation.src/engines/Brave.ts: Brave search implementation.src/engines/Bing.ts: Bing search implementation.src/engines/DuckDuckGo.ts: DuckDuckGo search implementation.src/engines/Yahoo.ts: Yahoo search implementation.src/engines/Startpage.ts: Startpage search implementation.src/engines/Yandex.ts: Yandex search implementation.
License
ISC
Repository
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.
Latest Blog Posts
- 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/luka-dev/serp-it'
If you have feedback or need assistance with the MCP directory API, please join our Discord server