io.github.daedalus/mcp-exa
MCP server exposing Exa websearch API
Open source Open in the app JSON README (API)
About
MCP server exposing Exa websearch API
Details
- Kind
- MCP servers
- Topic
- Web search, scraping & browser
- Publisher
- daedalus
- Origin
- official
- Category
- ferramentas
- Transport
- local
- Version
- 0.1.1
- Last push
- 2026-04-21T19:26:24Z
- Repository state
- ativo
- Language
- Python
- License
- MIT
- Added
- 2026-08-29 03:02:39
- Updated
- 2026-08-29 03:02:39
- Origin id
io.github.daedalus/mcp-exa
README
# MCP Exa
> A Python MCP server that exposes Exa search capabilities (no API key required)
[](https://pypi.org/project/mcp-exa/)
[](https://pypi.org/project/mcp-exa/)
[](https://codecov.io/gh/daedalus/mcp-exa)
[](https://github.com/astral-sh/ruff)
mcp-name: io.github.daedalus/mcp-exa
## Install
```bash
pip install mcp-exa
```
## Usage
No API key required. The server uses Exa's public MCP endpoint.
Run the MCP server:
```bash
mcp-exa
```
Or use as a module:
```bash
python -m mcp_exa
```
## Configuration
### Available Tools
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 |
## 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`
```json
{
"mcpServers": {
"exa": {
"command": "mcp-exa"
}
}
}
```
### OpenCode
Add to your `opencode.json`:
```json
{
"mcp": {
"exa": {
"type": "stdio",
"command": "mcp-exa",
"enabled": true
}
}
}
```
## Development
```bash
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/
```