MCP Exa

March 31, 2026 ยท View on GitHub

A Python MCP server that exposes Exa search capabilities (no API key required)

PyPI Python Coverage Ruff

mcp-name: io.github.daedalus/mcp-exa

Install

pip install mcp-exa

Usage

No API key required. The server uses Exa's public MCP endpoint.

Run the MCP server:

mcp-exa

Or use as a module:

python -m mcp_exa

Configuration

Available Tools

The server exposes the following MCP tools:

ToolDescription
web_search_exaSearch the web for any topic
get_code_context_exaFind code examples from GitHub, Stack Overflow
crawling_exaGet full content from a specific URL
web_search_advanced_exaAdvanced search with filters

MCP Client Configuration

Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "exa": {
      "command": "mcp-exa"
    }
  }
}

OpenCode

Add to your opencode.json:

{
  "mcp": {
    "exa": {
      "type": "stdio",
      "command": "mcp-exa",
      "enabled": true
    }
  }
}

Development

git clone https://github.com/daedalus/mcp-exa.git
cd mcp-exa
pip install -e ".[test]"

# run tests
pytest

# format
ruff format src/ tests/

# lint
ruff check src/ tests/

# type check
mypy src/