Tavily MCP Server
Tavily MCP server provides production-ready AI-optimized web search with real-time extraction, site mapping, and intelligent crawling for LLM agents.
Overview
The Tavily MCP Server is an AI-optimized search engine built specifically for LLM agents. Unlike traditional search APIs, Tavily returns structured, cleaned, and summarised content designed to be consumed by language models. It powers agentic search in LangChain, CrewAI, AutoGen, and OpenAI Agents SDK.
Official Server:
Developed and maintained by Tavily. Remote MCP available at https://mcp.tavily.com.
Key Features
AI-Optimised Search
Returns structured, cleaned content formatted specifically for LLM consumption
Intelligent Extraction
Extract structured data from web pages with AI-powered content parsing
Site Mapping
Create structured maps of websites to understand their information architecture
Web Crawling
Systematically explore websites with configurable depth and scope
Real-Time Search
Live web search with fresh results, not cached or stale data
OAuth Authentication
Secure remote MCP access with OAuth flow, no API key in config files
Available Tools
Quick Reference
| Tool | Purpose | Category |
|---|---|---|
tavily_search | Real-time web search with configurable depth | Search |
tavily_extract | Extract structured content from URLs | Extraction |
tavily_map | Build a structured map of a website | Mapping |
tavily_crawl | Systematic multi-page web crawling | Crawling |
tavily_research | Deep research with multi-source synthesis | Research |
Detailed Usage
tavily_search▶
Perform a real-time web search with AI-optimised results. Supports basic and advanced search depth.
{
"query": "latest developments in AI agent frameworks 2026",
"search_depth": "advanced",
"max_results": 10,
"include_images": true
}
tavily_extract▶
Extract clean, structured content from one or more URLs. Returns markdown-ready text.
{
"urls": ["https://docs.anthropic.com/en/docs/claude-code"],
"extract_depth": "advanced",
"include_images": false
}
tavily_map▶
Create a structured sitemap of a website showing page hierarchy and relationships.
{
"url": "https://docs.modelcontextprotocol.io",
"max_depth": 3
}
tavily_crawl▶
Systematically crawl multiple pages starting from a root URL with depth control.
{
"url": "https://docs.modelcontextprotocol.io",
"max_depth": 2,
"limit": 50
}
tavily_research▶
Perform deep research on any topic by gathering and synthesising information from multiple sources. Rate limit: 20 requests per minute.
{
"input": "Compare the pricing and features of Tavily, Exa, and Brave Search APIs for AI agent integration",
"model": "auto"
}
Installation
{
"mcpServers": {
"tavily": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.tavily.com/mcp/?tavilyApiKey=your-api-key"
]
}
}
}
Default Parameters
Set default search behaviour with the DEFAULT_PARAMETERS environment variable:
{
"mcpServers": {
"tavily": {
"command": "npx",
"args": ["-y", "tavily-mcp@latest"],
"env": {
"TAVILY_API_KEY": "your-api-key",
"DEFAULT_PARAMETERS": "{\"include_images\": true, \"search_depth\": \"advanced\", \"max_results\": 15}"
}
}
}
}
API Key Required:
Get a free Tavily API key from app.tavily.com. Free tier includes 1,000 searches/month.
Security
- API key is the sole authentication mechanism — never commit it to source control
- Remote MCP supports OAuth for enhanced security (no key in config files)
- All traffic encrypted via HTTPS
human_idparameter hashed server-side (SHA-256) before storage
Sources
Related Articles
Redis MCP Server
Redis MCP servers enable AI models to interact with Redis databases, providing capabilities for key-value operations, caching, pub/sub messaging, and high-performance data structures.
Accessibility Scanner MCP Server
Accessibility Scanner MCP servers enable AI models to perform WCAG compliance checks, capture annotated screenshots, and generate detailed accessibility reports.
Travel & Transportation MCP Servers: Flights, Stays & Navigation
Explore MCP servers for travel and transportation, providing standardized interfaces for AI models to search flights, book accommodations, discover places, and access navigation data.