MCP Tavily Search is a server that integrates Tavily's search API with Large Language Models (LLMs) through the Model Context Protocol. It provides intelligent web search capabilities optimized for high-quality, factual results, including context generation for RAG applications and direct question answering.
This server requires configuration through your MCP client. You'll need a Tavily API key to use this service.
Add this to your Cline MCP settings:
{
"mcpServers": {
"mcp-tavily-search": {
"command": "npx",
"args": ["-y", "mcp-tavily-search"],
"env": {
"TAVILY_API_KEY": "your-tavily-api-key"
}
}
}
}
For WSL environments, add this to your Claude Desktop configuration:
{
"mcpServers": {
"mcp-tavily-search": {
"command": "wsl.exe",
"args": [
"bash",
"-c",
"source ~/.nvm/nvm.sh && TAVILY_API_KEY=your-tavily-api-key /home/username/.nvm/versions/node/v20.12.1/bin/npx mcp-tavily-search"
]
}
}
}
The server requires the following environment variable:
TAVILY_API_KEY
: Your Tavily API key (required)The server implements three MCP tools with configurable parameters:
Search the web using Tavily Search API, optimized for high-quality, factual results.
Parameters:
query
(string, required): Search querysearch_depth
(string, optional): "basic" (faster) or "advanced" (more thorough). Defaults to "basic"topic
(string, optional): "general" or "news". Defaults to "general"days
(number, optional): Number of days back to search (news topic only). Defaults to 3time_range
(string, optional): Time range for results ('day', 'week', 'month', 'year' or 'd', 'w', 'm', 'y')max_results
(number, optional): Maximum number of results. Defaults to 5include_answer
(boolean, optional): Include AI-generated summary. Defaults to trueinclude_images
(boolean, optional): Include related images. Defaults to falseinclude_image_descriptions
(boolean, optional): Include image descriptions. Defaults to falseinclude_raw_content
(boolean, optional): Include raw HTML content. Defaults to falseinclude_domains
(string[], optional): List of trusted domains to includeexclude_domains
(string[], optional): List of domains to excluderesponse_format
(string, optional): 'text', 'json', or 'markdown'. Defaults to 'text'cache_ttl
(number, optional): Cache time-to-live in seconds. Defaults to 3600force_refresh
(boolean, optional): Force fresh results ignoring cache. Defaults to falseGenerate context for RAG applications using Tavily search.
Parameters:
query
(string, required): Search query for context generationmax_tokens
(number, optional): Maximum length of generated context. Defaults to 2000search_depth
(string, optional): "basic" or "advanced". Defaults to "advanced"topic
(string, optional): "general" or "news". Defaults to "general"Get direct answers to questions using Tavily search.
Parameters:
query
(string, required): Question to be answeredinclude_sources
(boolean, optional): Include source citations. Defaults to truesearch_depth
(string, optional): "basic" or "advanced". Defaults to "advanced"topic
(string, optional): "general" or "news". Defaults to "general"The server supports flexible domain filtering through two optional parameters:
include_domains
: Array of trusted domains to include in search resultsexclude_domains
: Array of domains to exclude from search resultsThis allows you to:
Example domain filtering:
{
"include_domains": ["arxiv.org", "science.gov"],
"exclude_domains": ["example.com"]
}
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mcp-tavily-search" '{"command":"npx","args":["-y","mcp-tavily-search"],"env":{"TAVILY_API_KEY":"your-tavily-api-key"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mcp-tavily-search": {
"command": "npx",
"args": [
"-y",
"mcp-tavily-search"
],
"env": {
"TAVILY_API_KEY": "your-tavily-api-key"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mcp-tavily-search": {
"command": "npx",
"args": [
"-y",
"mcp-tavily-search"
],
"env": {
"TAVILY_API_KEY": "your-tavily-api-key"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect