by tavily-ai
Tavily Search offers real-time web search and content extraction, perfect for research, aggregation, and endnote online
Provides AI-enhanced web search capabilities through Tavily's API, with options for basic searches or direct answer generation.
Tavily Search is an official MCP server published by tavily-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. Tavily Search offers real-time web search and content extraction, perfect for research, aggregation, and endnote online It is categorized under search web.
You can install Tavily Search in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Tavily Search is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
According to our notes, Tavily Search benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Tavily Search is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend Tavily Search for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Tavily Search against two servers with overlapping tools; this profile had the clearer scope statement.
Tavily Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Tavily Search for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Tavily Search into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Tavily Search reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: Tavily Search is the kind of server we cite when onboarding engineers to host + tool permissions.
Strong directory entry: Tavily Search surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 38
The Tavily MCP server provides:
Connect directly to Tavily's remote MCP server instead of running it locally. This provides a seamless experience without requiring local installation or configuration.
Simply use the remote MCP server URL with your Tavily API key:
https://mcp.tavily.com/mcp/?tavilyApiKey=<your-api-key>
Get your Tavily API key from tavily.com.
Alternatively, you can pass your API key through an Authorization header if the MCP client supports this:
Authorization: Bearer <your-api-key>
Note: When using the remote MCP, you can specify default parameters for all requests by including a DEFAULT_PARAMETERS header containing a JSON object with your desired defaults. Example:
{"include_images":true, "search_depth": "basic", "max_results": 10}
Claude Code is Anthropic's official CLI tool for Claude. You can add the Tavily MCP server using the claude mcp add command. There are two ways to authenticate:
Pass your API key directly in the URL. Replace <your-api-key> with your actual Tavily API key:
claude mcp add --transport http tavily https://mcp.tavily.com/mcp/?tavilyApiKey=<your-api-key>
Add the server without an API key in the URL:
claude mcp add --transport http tavily https://mcp.tavily.com/mcp
After adding, you'll need to complete the authentication flow:
claude to start Claude Code/mcp to open the MCP server managementTip: Add --scope user to either command to make the Tavily MCP server available globally across all your projects:
claude mcp add --transport http --scope user tavily https://mcp.tavily.com/mcp/?tavilyApiKey=<your-api-key>
Once configured, you'll have access to the Tavily search, extract, map, and crawl tools.
Click the ⬆️ Add to Cursor ⬆️ button, this will do most of the work for you but you will still need to edit the configuration to add your API-KEY. You can get a Tavily API key here.
once you click the button you should be redirect to Cursor ...
Click the install button

You should see the MCP is now installed, if the blue slide is not already turned on, manually turn it on. You also need to edit the configuration to include your own Tavily API key.

You will then be redirected to your mcp.json file where you have to add your-api-key.
{
"mcpServers": {
"tavily-remote-mcp": {
"command": "npx -y mcp-remote https://mcp.tavily.com/mcp/?tavilyApiKey=<your-api-key>",
"env": {}
}
}
}
The Tavily Remote MCP server supports secure OAuth authentication, allowing you to connect and authorize seamlessly with compatible clients.
A. Using MCP Inspector:
Once finished, you will receive an access token that lets you securely make authenticated requests to the Tavily Remote MCP server.
B. Using other MCP Clients (Example: Cursor):
You can configure your MCP client to use OAuth without including your Tavily API key in the URL. For example, in your mcp.json:
{
"mcpServers": {
"tavily-remote-mcp": {
"command": "npx mcp-remote https://mcp.tavily.com/mcp",
"env": {}
}
}
}
If you need to clear stored OAuth credentials and reauthenticate, run:
rm -rf ~/.mcp-auth
Note:
- OAuth authentication is optional. You can still use API key authentication at any time by including your Tavily API key in the URL query parameter (
?tavilyApiKey=...) or by setting it in theAuthorizationheader, as described above.
After successful OAuth authentication, you can control which API key is used by naming it mcp_auth_default:
mcp_auth_default in your personal account, that key will be used for the auth flow.mcp_auth_default, that key will be used for the auth flow.mcp_auth_default, the personal key will be prioritized.mcp_auth_default key is set, the default key in your personal account will be used. If no default key is set, the first available key will be used.Before you begin, ensure you have:
node --versionbrew install gitsudo apt install gitsudo yum install gitnpx -y tavily-mcp@latest
You can set default parameter values for the tavily-search tool using the DEFAULT_PARAMETERS environment variable. This allows you to configure default search behavior without specifying these parameters in every request.
export DEFAULT_PARAMETERS='{"include_images": true}'
{
"mcpServers": {
"tavily-mcp": {
"command": "npx",
"args": ["-y", "tavily-mcp@latest"],
"env": {
"TAVILY_API_KEY": "your-api-key-here",
"DEFAULT_PARAMETERS": "{"include_images": true, "max_results": 15, "search_depth": "advanced"}"
}
}
}
}
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.