Tavily Search MCP Server
by Tavily AI ยท โญ 876 stars ยท updated 3 weeks ago
AI-optimized web search powered by Tavily. Get real-time, accurate search results formatted for AI consumption, with source attribution and content extraction.
81
Very Good
Quality Score Breakdown
maintenance83/100
community79/100
documentation82/100
compatibility80/100
Use Cases
- โreal-time web search
- โresearch with sources
- โnews retrieval
- โfact-checking
โก 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": {
"tavily": {
"command": "npx",
"args": [
"-y",
"@tavily/mcp"
],
"env": {
"TAVILY_API_KEY": "YOUR_TAVILY_API_KEY"
}
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"tavily": {
"command": "npx",
"args": [
"-y",
"@tavily/mcp"
],
"env": {
"TAVILY_API_KEY": "YOUR_TAVILY_API_KEY"
}
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"tavily": {
"command": "npx",
"args": [
"-y",
"@tavily/mcp"
],
"env": {
"TAVILY_API_KEY": "YOUR_TAVILY_API_KEY"
}
}
}
}
}