Exa MCP Server
by Exa Labs ยท โญ 1.2k stars ยท updated 3 weeks ago
AI-powered web search using Exa's semantic search API. Find relevant content, research topics, and retrieve high-quality web results tailored for AI workflows.
84
Very Good
Quality Score Breakdown
maintenance86/100
community82/100
documentation84/100
compatibility84/100
Use Cases
- โsemantic web search
- โresearch assistance
- โcontent discovery
- โAI-powered search
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"exa": {
"command": "npx",
"args": [
"-y",
"exa-mcp-server"
],
"env": {
"EXA_API_KEY": "YOUR_EXA_API_KEY"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"exa": {
"command": "npx",
"args": [
"-y",
"exa-mcp-server"
],
"env": {
"EXA_API_KEY": "YOUR_EXA_API_KEY"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"exa": {
"command": "npx",
"args": [
"-y",
"exa-mcp-server"
],
"env": {
"EXA_API_KEY": "YOUR_EXA_API_KEY"
}
}
}
}
}