/ 디렉터리 / 플레이그라운드 / mcp-omnisearch
● 커뮤니티 spences10 ⚡ 바로 사용

mcp-omnisearch

제작: spences10 · spences10/mcp-omnisearch

One MCP, every search engine — Tavily, Brave, Kagi, Exa, plus Firecrawl for extraction. Mix providers without juggling 5 MCPs.

mcp-omnisearch unifies web search, AI-search, GitHub search, and content extraction behind four tools. Bring keys for whichever providers you pay for; unkeyed providers are skipped silently. Great when you want redundancy across search backends or cost optimization per query type.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

omnisearch.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "omnisearch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-omnisearch"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "omnisearch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-omnisearch"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "omnisearch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-omnisearch"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "omnisearch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-omnisearch"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "omnisearch",
      "command": "npx",
      "args": [
        "-y",
        "mcp-omnisearch"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "omnisearch": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "mcp-omnisearch"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add omnisearch -- npx -y mcp-omnisearch

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: mcp-omnisearch

Research a topic with fallback across multiple search engines

👤 Researchers, analysts, anyone who's been burned by a single engine's bias ⏱ ~15 min beginner

언제 쓸까: A fresh topic where one engine's top-10 often differs from another's.

사전 조건
  • At least one search API key (Tavily free tier is easiest) — tavily.com/signup — free tier is 1000 req/month
흐름
  1. Run a search with the cheapest provider first
    Search Tavily for 'latest MCP protocol changes 2026'. Summarize the top 5 results.✓ 복사됨
    → Summary with citations
  2. Cross-check on a different provider
    Now search the same query on Brave. Which results show up in both? Which are unique?✓ 복사됨
    → Overlap analysis
  3. Extract full content for the most promising result
    Use web_extract on the top result and give me the actual useful text, not nav boilerplate.✓ 복사됨
    → Clean markdown of the article

결과: A cross-validated research answer with confidence boosted by multi-engine agreement.

함정
  • Per-provider quotas vary — Tavily is generous, Kagi costs per query — Route exploratory searches to Tavily, save Kagi for high-signal 'give me the answer' queries via FastGPT
  • web_extract fails on JS-heavy sites — Use Firecrawl (JS-rendering) for SPAs; Tavily extract for static pages
함께 쓰기: notion

Get a cited quick answer with AI search

👤 Anyone who wants 'what's the answer' not 'here are 10 blue links' ⏱ ~5 min beginner

언제 쓸까: A specific factual question where you want reasoning with sources.

사전 조건
  • At least one AI-search key: KAGI_API_KEY, EXA_API_KEY, or LINKUP_API_KEY — Kagi FastGPT is the cheapest per query
흐름
  1. Ask via ai_search
    Use ai_search (Kagi FastGPT) for: what's the default rate limit for the GitHub Models API as of Q1 2026?✓ 복사됨
    → Direct answer with citations
  2. Verify the citation
    Open the top citation with web_extract and confirm the claim.✓ 복사됨
    → Quoted source text

결과: A verified quick answer, cheaper and faster than a free-search round-trip.

함정
  • AI search can confidently misquote sources — Always web_extract the top citation for claims that matter

Search public GitHub for reference implementations

👤 Devs evaluating libraries or looking for code patterns ⏱ ~15 min intermediate

언제 쓸까: 'Has anyone solved X in Rust?' type questions.

사전 조건
  • GITHUB_API_KEY with no scopes (public only) — github.com/settings/tokens — classic token with empty scope list is fine
흐름
  1. Search with code operators
    github_search for fn main() language:rust path:src/ 'tokio::select!' — top 20 repos.✓ 복사됨
    → Repo list with file hits
  2. Pull specific files worth reading
    For the top 3 hits, use web_extract on the raw.githubusercontent URLs and show me the tokio::select! patterns they use.✓ 복사됨
    → Code excerpts with context

결과: A focused reading list of real-world implementations you can learn from.

함께 쓰기: github

조합

다른 MCP와 조합해 10배 효율

omnisearch + notion

Research a topic across engines, save distilled notes to Notion

Research 'post-quantum TLS 2026 state of play' across Tavily and Brave, extract the 3 best sources, and save a Notion page summarizing them.✓ 복사됨
omnisearch + github

Discover repos on GitHub public search, then do deep ops on the best one via the github MCP

github_search for rate-limiter libraries in Go, pick the top, then via the github MCP open its latest 3 issues.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
web_search query: str, provider?: tavily|brave|kagi|exa, options?: {site?, filetype?, time?, lang?} Broad web search with operator control 1 provider API call
ai_search query: str, provider?: kagi_fastgpt|exa|linkup You want a direct cited answer, not links 1 AI-search call (costlier than regular search)
github_search query: str, kind?: code|repo|user Code/repo/user discovery with GitHub syntax 1 GitHub API call (30/min code search limit)
web_extract url: str, provider?: firecrawl|tavily|kagi Get clean article text from a URL 1 extractor call

비용 및 제한

운영 비용

API 쿼터
Per-provider. Tavily: 1000 req/mo free. Brave: 2000/mo free. Kagi: pay-per-call. Exa: free tier ~1000/mo.
호출당 토큰
Search results: 500-1500 tokens. AI search with citations: 1-3k. Extracted articles: 2-8k.
금액
Free to start (Tavily, Brave, Exa free tiers); Kagi pay-per-call; Firecrawl self-host = free
Route: cheap broad search → Tavily/Brave; high-signal answers → Kagi FastGPT; extraction → self-hosted Firecrawl.

보안

권한, 시크릿, 파급범위

최소 스코프: GitHub token: empty scopes (public only)
자격 증명 저장: Env vars per provider: TAVILY_API_KEY, BRAVE_API_KEY, etc.
데이터 외부 송신: Queries to each configured provider's API; results back through
절대 부여 금지: GitHub token with repo write — web_search is public-only Self-hosted Firecrawl without auth exposed to public internet

문제 해결

자주 발생하는 오류와 해결

Provider not configured

Set the env var for that provider, or pass provider= to route to a different one.

확인: echo $TAVILY_API_KEY
Firecrawl extraction timeout

Heavy SPA; raise FIRECRAWL timeout, or fall back to tavily/kagi extract for static pages.

GitHub search returns 403

Unauthenticated code search is heavily rate-limited. Supply GITHUB_API_KEY even with empty scopes.

확인: curl -H 'Authorization: Bearer $GITHUB_API_KEY' https://api.github.com/rate_limit

대안

mcp-omnisearch 다른 것과 비교

대안언제 쓰나단점/장점
brave-search MCPYou only need one engine and want a minimal configNo AI search, no multi-provider redundancy
searxng MCPYou want fully self-hosted metasearch with no API keysYou host the SearXNG instance
kindly-web-searchYou want fuller content retrieval baked in (full StackOverflow threads, GitHub issues)Smaller provider list

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기