Tavily MCP Server
Researchstdiov0.3.1
MCP server for Tavily's AI-optimized search engine. Designed specifically for LLM agents and RAG applications, providing concise, factual search results with source attribution. Supports general web search, news search, and direct Q&A extraction. Returns pre-processed content optimized for AI consumption with relevance scoring and content deduplication.
连接
将此配置添加到 .claude/mcp.json
{
"mcpServers": {
"tavily": {
"command": "npx",
"args": [
"-y",
"tavily-mcp"
],
"env": {
"TAVILY_API_KEY": "<YOUR_TAVILY_API_KEY>"
}
}
}
}工具 (2)
tavily_search
Perform an AI-optimized web search and return relevant results with content.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query"
},
"topic": {
"enum": [
"general",
"news"
],
"type": "string",
"description": "Search topic category"
},
"max_results": {
"type": "integer",
"description": "Maximum number of results to return (default 5)"
},
"search_depth": {
"enum": [
"basic",
"advanced"
],
"type": "string",
"description": "Search depth (basic is faster, advanced is more thorough)"
},
"exclude_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Exclude results from these domains"
},
"include_domains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Only include results from these domains"
}
}
}tavily_extract
Extract and parse content from one or more URLs into clean text.
{
"type": "object",
"required": [
"urls"
],
"properties": {
"urls": {
"type": "array",
"items": {
"type": "string"
},
"description": "URLs to extract content from"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 版本
- 0.3.1
- 星标
- 1,820
- 最后更新
- 2026年5月26日