A Model Context Protocol (MCP) server that provides unified access to multiple search providers and AI tools. This server combines the capabilities of Tavily, Perplexity, Kagi, Jina AI, Brave, and Firecrawl to offer comprehensive search, AI responses, content processing, and enhancement features through a single interface.
MCP Omnisearch provides powerful search capabilities through operators and parameters:
// Using Brave or Kagi with query string operators
{
"query": "filetype:pdf site:microsoft.com typescript guide"
}
// Using Tavily with API parameters
{
"query": "typescript guide",
"include_domains": ["microsoft.com"],
"exclude_domains": ["github.com"]
}
MCP Omnisearch is designed to work with the API keys you have available. You don't need to have keys for all providers - the server will automatically detect which API keys are available and only enable those providers.
For example:
This flexibility makes it easy to get started with just one or two providers and add more as needed.
This server requires configuration through your MCP client. Here are examples for different environments:
Add this to your Cline MCP settings:
{
"mcpServers": {
"mcp-omnisearch": {
"command": "node",
"args": ["/path/to/mcp-omnisearch/dist/index.js"],
"env": {
"TAVILY_API_KEY": "your-tavily-key",
"PERPLEXITY_API_KEY": "your-perplexity-key",
"KAGI_API_KEY": "your-kagi-key",
"JINA_AI_API_KEY": "your-jina-key",
"BRAVE_API_KEY": "your-brave-key",
"FIRECRAWL_API_KEY": "your-firecrawl-key"
},
"disabled": false,
"autoApprove": []
}
}
}
For WSL environments, add this to your Claude Desktop configuration:
{
"mcpServers": {
"mcp-omnisearch": {
"command": "wsl.exe",
"args": [
"bash",
"-c",
"TAVILY_API_KEY=key1 PERPLEXITY_API_KEY=key2 KAGI_API_KEY=key3 JINA_AI_API_KEY=key4 BRAVE_API_KEY=key5 FIRECRAWL_API_KEY=key6 node /path/to/mcp-omnisearch/dist/index.js"
]
}
}
}
The server uses API keys for each provider. You don't need keys for all providers - only the providers corresponding to your available API keys will be activated:
TAVILY_API_KEY
: For Tavily SearchPERPLEXITY_API_KEY
: For Perplexity AIKAGI_API_KEY
: For Kagi services (FastGPT, Summarizer, Enrichment)JINA_AI_API_KEY
: For Jina AI services (Reader, Grounding)BRAVE_API_KEY
: For Brave SearchFIRECRAWL_API_KEY
: For Firecrawl services (Scrape, Crawl, Map,
Extract, Actions)You can start with just one or two API keys and add more later as needed. The server will log which providers are available on startup.
The server implements MCP Tools organized by category:
Search the web using Tavily Search API. Best for factual queries requiring reliable sources and citations.
Parameters:
query
(string, required): Search queryExample:
{
"query": "latest developments in quantum computing"
}
Privacy-focused web search with good coverage of technical topics.
Parameters:
query
(string, required): Search queryExample:
{
"query": "rust programming language features"
}
High-quality search results with minimal advertising influence. Best for finding authoritative sources and research materials.
Parameters:
query
(string, required): Search querylanguage
(string, optional): Language filter (e.g., "en")no_cache
(boolean, optional): Bypass cache for fresh resultsExample:
{
"query": "latest research in machine learning",
"language": "en"
}
AI-powered response generation with real-time web search integration.
Parameters:
query
(string, required): Question or topic for AI responseExample:
{
"query": "Explain the differences between REST and GraphQL"
}
Quick AI-generated answers with citations.
Parameters:
query
(string, required): Question for quick AI responseExample:
{
"query": "What are the main features of TypeScript?"
}
Convert URLs to clean, LLM-friendly text with image captioning.
Parameters:
url
(string, required): URL to processExample:
{
"url": "https://example.com/article"
}
Summarize content from URLs.
Parameters:
url
(string, required): URL to summarizeExample:
{
"url": "https://example.com/long-article"
}
Extract raw content from web pages with Tavily Extract.
Parameters:
url
(string | string[], required): Single URL or array of URLs to
extract content fromextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced'Example:
{
"url": [
"https://example.com/article1",
"https://example.com/article2"
],
"extract_depth": "advanced"
}
Response includes:
Extract clean, LLM-ready data from single URLs with enhanced formatting options.
Parameters:
url
(string | string[], required): Single URL or array of URLs to
extract content fromextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced'Example:
{
"url": "https://example.com/article",
"extract_depth": "basic"
}
Response includes:
Deep crawling of all accessible subpages on a website with configurable depth limits.
Parameters:
url
(string | string[], required): Starting URL for crawlingextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced' (controls crawl depth and limits)Example:
{
"url": "https://example.com",
"extract_depth": "advanced"
}
Response includes:
Fast URL collection from websites for comprehensive site mapping.
Parameters:
url
(string | string[], required): URL to mapextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced' (controls map depth)Example:
{
"url": "https://example.com",
"extract_depth": "basic"
}
Response includes:
Structured data extraction with AI using natural language prompts.
Parameters:
url
(string | string[], required): URL to extract structured data
fromextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced'Example:
{
"url": "https://example.com",
"extract_depth": "basic"
}
Response includes:
Support for page interactions (clicking, scrolling, etc.) before extraction for dynamic content.
Parameters:
url
(string | string[], required): URL to interact with and
extract content fromextract_depth
(string, optional): Extraction depth - 'basic'
(default) or 'advanced' (controls complexity of interactions)Example:
{
"url": "https://news.ycombinator.com",
"extract_depth": "basic"
}
Response includes:
Get supplementary content from specialized indexes.
Parameters:
query
(string, required): Query for enrichmentExample:
{
"query": "emerging web technologies"
}
Verify statements against web knowledge.
Parameters:
statement
(string, required): Statement to verifyExample:
{
"statement": "TypeScript adds static typing to JavaScript"
}
pnpm install
pnpm run build
pnpm run dev
pnpm run build
pnpm publish
Each provider requires its own API key and may have different access requirements:
Each provider has its own rate limits. The server will handle rate limit errors gracefully and return appropriate error messages.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see the LICENSE file for details.
Built on:
Seamless access to top MCP servers powering the future of AI integration.