This server connects Claude to Exa's search API without requiring your own API key, which is its main appeal. You get four tools: basic web search, code-specific search that pulls from GitHub and Stack Overflow, URL crawling for full page content, and advanced search with filters. It's a Python package you install via pip and run as a standalone command. Useful when you need Claude to search the web or fetch fresh content during a conversation, especially if you don't want to manage another API key. The code search tool is handy for finding examples when you're stuck on implementation details.
Public tool metadata for what this MCP can expose to an agent.
web_search_exaSearch the web for any topic and get clean, ready-to-use content. Best for: Finding current information, news, facts, people, companies, or answering questions about any topic. Returns: Clean text content from top search results. Query tips: describe the ideal page, not keywor...2 paramsSearch the web for any topic and get clean, ready-to-use content. Best for: Finding current information, news, facts, people, companies, or answering questions about any topic. Returns: Clean text content from top search results. Query tips: describe the ideal page, not keywor...
querystringnumResultsnumberweb_fetch_exaRead a webpage's full content as clean markdown. Use after web_search_exa when highlights are insufficient or to read any URL. Best for: Extracting full content from known URLs. Batch multiple URLs in one call. Returns: Clean text content and metadata from the page(s).2 paramsRead a webpage's full content as clean markdown. Use after web_search_exa when highlights are insufficient or to read any URL. Best for: Extracting full content from known URLs. Batch multiple URLs in one call. Returns: Clean text content and metadata from the page(s).
urlsarraymaxCharactersnumberA Python MCP server that exposes Exa search capabilities (no API key required)
mcp-name: io.github.daedalus/mcp-exa
pip install mcp-exa
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
The server exposes the following MCP tools:
| Tool | Description |
|---|---|
web_search_exa | Search the web for any topic |
get_code_context_exa | Find code examples from GitHub, Stack Overflow |
crawling_exa | Get full content from a specific URL |
web_search_advanced_exa | Advanced search with filters |
Add to your config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"exa": {
"command": "mcp-exa"
}
}
}
Add to your opencode.json:
{
"mcp": {
"exa": {
"type": "stdio",
"command": "mcp-exa",
"enabled": true
}
}
}
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/
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp