skillpack.co
All solutions

Exa MCP Server

active

Official Exa MCP for fast web search and crawling when the workflow is search-first rather than page-ops-first.

Score 87

Where it wins

Neural/keyword hybrid search with semantic embeddings — unique capability

940K weekly downloads (270K npm + 670K PyPI) — massive real adoption

Exa Deep launch (March 4 2026) adds deep research tier ($12-15/1K)

Official provider support, SOC 2 Type II

Good fit for discovery and initial market mapping

Where to be skeptical

MCP benchmark: only 23% web search success — MCP implementation is immature

Exa Deep tiers are new (March 2026), limited production track record

Closed-source, cloud-only — no self-hosting option

Latency ~1,200ms for standard search (2x Brave)

Editorial verdict

#8 in product-business-development, #2 research tool. 4,050 stars, 9.3K npm/wk, 19.7K PulseMCP/wk (#56 global). Best for semantic discovery ('find companies like X'). exa-code for coding agents is a unique differentiator. AIMultiple benchmark tested extraction, not discovery — 23% undersells Exa's actual strength.

Videos

Reviews, tutorials, and comparisons from the community.

5 Claude Code MCP Servers You Need To Be Using

Sean Kochel·2025-07-24

13 OpenClaw Skills You NEED To Install Right Now

Dubibubii·2026-03-15

Top 5 MCP Servers For Vibe Coding In 2026

BridgeMind·2026-02-24

Agents at Work 16: What LLMs are looking for with Thais Castello (Exa.ai)

Agents At Work·2025-06-15

Building a Smarter AI Agent with Neural RAG - Will Bryk, Exa.ai

AI Engineer·2025-03-15

Related

Public evidence

moderate2025-12
FlowHunt MCP Server Review: Exa scores 5/10

Scored 5/10. Praised setup simplicity and MIT license. Criticized lack of documentation on prompts, resources, and tools. No sampling support.

Independent MCP directory review with scoringFlowHunt (independent MCP review platform)
moderate2026-01
Alan He: Claude Code with Exa MCP — hands-on review

Tested Exa MCP with Claude Code for a day and found it 'quite good,' praising search quality and speed. Covers pricing, installation, and practical usage.

Personal developer blog reviewAlan He (independent developer)
moderate2026-02
PulseMCP: Exa ranked Top Pick MCP server, #52 globally

Listed as Top Pick. Released Nov 27, 2024. Ranked #52 globally with estimated 706K visitors. Independent aggregator positioning.

Estimated 706K visitors, Top Pick badgePulseMCP (independent MCP directory)
strong2025-09-03
Nvidia-backed $85M Series B at $700M valuation

Nvidia investment signals infrastructure-grade credibility. $700M valuation validates market position. Exa serves web search to thousands of companies including Cursor.

SiliconANGLE coverage, 16pts HNSiliconANGLE (independent tech news)
moderateSelf-reported2026-03-04
Exa Deep launched March 4, 2026 — enters deep research lane

Two tiers: deep ($12/1K, 4-12s) and deep-reasoning ($15/1K, 12-50s). Structured outputs with field-level grounding. Claims to beat Perplexity Sonar and Parallel on HLE-Search, Deep Search QA, FRAMES — but no specific numbers published.

Launch blog postExa AI (self-reported)

Raw GitHub source

GitHub README peek

Constrained peek so you can sanity-check the source material without leaving the site.

Exa MCP Server

Connect AI assistants to Exa's search capabilities: web search, code search, and company research.

Installation

Connect to Exa's hosted MCP server:

https://mcp.exa.ai/mcp
<details> <summary><b>Cursor</b></summary>

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "exa": {
      "url": "https://mcp.exa.ai/mcp"
    }
  }
}
</details> <details> <summary><b>VS Code</b></summary>

Add to .vscode/mcp.json:

{
  "servers": {
    "exa": {
      "type": "http",
      "url": "https://mcp.exa.ai/mcp"
    }
  }
}
</details> <details> <summary><b>Claude Code</b></summary>
claude mcp add --transport http exa https://mcp.exa.ai/mcp
</details> <details> <summary><b>Claude Desktop</b></summary>

Exa is available as a native Claude Connector — no config files or terminal commands needed.

  1. Open Claude Desktop Settings (or Customize) and go to Connectors
  2. Search for Exa in the directory
  3. Click + to add it

That's it! Claude will now have access to Exa's search tools.

<details> <summary>Alternative: manual config</summary>

Add to your config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "exa": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.exa.ai/mcp"]
    }
  }
}
</details> </details> <details> <summary><b>Codex</b></summary>
codex mcp add exa --url https://mcp.exa.ai/mcp
</details> <details> <summary><b>OpenCode</b></summary>

Add to your opencode.json:

{
  "mcp": {
    "exa": {
      "type": "remote",
      "url": "https://mcp.exa.ai/mcp",
      "enabled": true
    }
  }
}
</details> <details> <summary><b>Antigravity</b></summary>

Open the MCP Store panel (from the "..." dropdown in the side panel), then add a custom server with:

https://mcp.exa.ai/mcp
</details> <details> <summary><b>Windsurf</b></summary>

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "exa": {
      "serverUrl": "https://mcp.exa.ai/mcp"
    }
  }
}
</details> <details> <summary><b>Zed</b></summary>
View on GitHub →