Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"exa": {
"command": "mcp-exa"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Python MCP server that exposes Exa search capabilities (no API key required)
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'mcp-exa' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-exa against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search
Web and local search using Brave Search API
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
MCP Security Weekly
Get CVE alerts and security updates for MCP server exposing Exa websearch API and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A 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/