Tavily MCP Server

Official

tavily-search

A powerful web search tool that provides comprehensive, real-time results using Tavily's AI search engine. Returns relevant web content with customizable parameters for result count, content type, and domain filtering. Ideal for gathering current information, news, and detailed web content analysis.

Input Schema

NameRequiredDescriptionDefault
daysNoThe number of days back from the current date to include in the search results. This specifies the time frame of data to be retrieved. Please note that this feature is only available when using the 'news' search topic
exclude_domainsNoList of domains to specifically exclude, if the user asks to exclude a domain set this to the domain of the site
include_domainsNoA list of domains to specifically include in the search results, if the user asks to search on specific sites set this to the domain of the site
include_image_descriptionsNoInclude a list of query-related images and their descriptions in the response
include_imagesNoInclude a list of query-related images in the response
include_raw_contentNoInclude the cleaned and parsed HTML content of each search result
max_resultsNoThe maximum number of search results to return
queryYesSearch query
search_depthNoThe depth of the search. It can be 'basic' or 'advanced'basic
time_rangeNoThe time range back from the current date to include in the search results. This feature is available for both 'general' and 'news' search topics
topicNoThe category of the search. This will determine which of our agents will be used for the searchgeneral

Input Schema (JSON Schema)

{ "properties": { "days": { "default": 3, "description": "The number of days back from the current date to include in the search results. This specifies the time frame of data to be retrieved. Please note that this feature is only available when using the 'news' search topic", "type": "number" }, "exclude_domains": { "default": [], "description": "List of domains to specifically exclude, if the user asks to exclude a domain set this to the domain of the site", "items": { "type": "string" }, "type": "array" }, "include_domains": { "default": [], "description": "A list of domains to specifically include in the search results, if the user asks to search on specific sites set this to the domain of the site", "items": { "type": "string" }, "type": "array" }, "include_image_descriptions": { "default": false, "description": "Include a list of query-related images and their descriptions in the response", "type": "boolean" }, "include_images": { "default": false, "description": "Include a list of query-related images in the response", "type": "boolean" }, "include_raw_content": { "default": false, "description": "Include the cleaned and parsed HTML content of each search result", "type": "boolean" }, "max_results": { "default": 10, "description": "The maximum number of search results to return", "maximum": 20, "minimum": 5, "type": "number" }, "query": { "description": "Search query", "type": "string" }, "search_depth": { "default": "basic", "description": "The depth of the search. It can be 'basic' or 'advanced'", "enum": [ "basic", "advanced" ], "type": "string" }, "time_range": { "description": "The time range back from the current date to include in the search results. This feature is available for both 'general' and 'news' search topics", "enum": [ "day", "week", "month", "year", "d", "w", "m", "y" ], "type": "string" }, "topic": { "default": "general", "description": "The category of the search. This will determine which of our agents will be used for the search", "enum": [ "general", "news" ], "type": "string" } }, "required": [ "query" ], "type": "object" }

You must be authenticated.

Other Tools