Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

tavily-mcptavily MCP 搜索

Agent Skill

tavily-mcp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

661

周安装

27

GitHub Stars

44

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tavily-mcp(tavily MCP 搜索)
来源仓库:https://github.com/darraghh1/my-claude-setup
仓库路径:skills/tavily-mcp
安装命令:
npx skills add https://github.com/darraghh1/my-claude-setup --skill tavily-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/darraghh1/my-claude-setup --skill tavily-mcp

简介

tavily-mcp 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • tavily-mcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tavily Web Search & Research

You are an expert at using the Tavily MCP server for web search, content extraction, site crawling, and multi-source research. Tavily provides high-quality, AI-optimized search results and deep content extraction.

Critical: These Are Direct Tool Calls

MCP tools are direct tool calls — exactly like Read, Grep, or Bash. They are NOT CLI commands.

CORRECT — call the tool directly:

Tool: mcp__tavily__tavily_search
Parameters: { "query": "Next.js 15 server actions best practices 2026" }

WRONG — do NOT shell out:

Bash: claude mcp call tavily tavily_search ...  # This does not work

All Tavily MCP tools use the mcp__tavily__ prefix.

Critical: Output Size Awareness

ToolOutput SizeCostNotes
tavily_search (basic)Small-MediumLow5-10 results with snippets
tavily_search (advanced)MediumMediumMore results, deeper analysis
tavily_extractMedium-LargeMediumFull page content — scales with page size
tavily_crawlLarge-Very LargeHighMultiple pages — scales with depth/breadth settings
tavily_mapMediumLowURL list only (no content)
tavily_researchVery LargeVery HighMulti-source synthesis — use sparingly

Start with tavily_search for most questions. Only escalate to tavily_research for comprehensive multi-source analysis.

Workflow 1: Quick Search

Trigger: User asks a factual question, needs current information, or wants a quick answer.

Steps

  1. Search with targeted query: tavily_search({query: "Supabase RLS best practices 2026", search_depth: "basic"})
  2. If results are insufficient, try advanced search: tavily_search({query: "Supabase RLS best practices 2026", search_depth: "advanced"})
  3. Optionally filter by domain: tavily_search({query: "Next.js middleware", include_domains: ["nextjs.org", "vercel.com"]})

Workflow 2: Extract Content from URL

Trigger: User provides a URL and wants its content, or search results point to a page needing deeper extraction.

Steps

  1. Extract page content: tavily_extract({urls: ["https://example.com/article"], extract_depth: "basic"})
  2. For protected sites or complex pages (tables, dynamic content): tavily_extract({urls: ["https://example.com/pricing"], extract_depth: "advanced"})

Note: tavily_extract can handle multiple URLs in parallel — pass them all in the urls array.

Workflow 3: Site Discovery & Crawling

Trigger: User says "explore this site", "what pages does this site have?", "crawl the docs", "map the site structure"

Steps

  1. Map the site first (URL structure only, no content): tavily_map({url: "https://docs.example.com", max_depth: 2, max_urls: 50})
  2. Then crawl specific sections (full content): tavily_crawl({url: "https://docs.example.com/guides", max_depth: 1, max_breadth: 10})

Key Patterns

  • Always tavily_map before tavily_crawl — understand structure first, then extract content
  • tavily_crawl defaults: max_depth: 1, max_breadth: 20 — increase carefully
  • Crawling entire sites is expensive — target specific sections

Workflow 4: Deep Research

Trigger: User says "research this topic thoroughly", "give me a comprehensive analysis", "compare options for X"

Steps

  1. Start with a search to gauge complexity: tavily_search({query: "...", search_depth: "advanced"})
  2. If a single search isn't enough, use research: tavily_research({query: "Comprehensive comparison of Supabase vs Firebase for multi-tenant SaaS in 2026", max_results: 10})

Use tavily_research sparingly — it makes multiple internal requests and produces very large output. Most questions are answered by tavily_search alone.

Decision Tree

User NeedsBest ToolWhy
Quick factual answertavily_search (basic)Fast, low cost
Thorough search resultstavily_search (advanced)More results, deeper snippets
Content from a specific URLtavily_extractDirect page content
Site structure overviewtavily_mapURL list only, no content
Multiple pages from a sitetavily_crawlFollows links, extracts content
Comprehensive multi-source analysistavily_researchMulti-source synthesis (expensive)

Search Tips

  • Include the year for current info: "React server components 2026" not just "React server components"
  • Use include_domains to target authoritative sources: ["nextjs.org", "supabase.com"]
  • Use exclude_domains to filter noise: ["medium.com", "w3schools.com"]
  • Be specific: "Supabase RLS policies for multi-tenant SaaS with account_id" beats "Supabase security"

Troubleshooting

Search Returns Outdated Results

  1. Add the current year to your query: "topic 2026"
  2. Use search_depth: "advanced" for better results
  3. Use include_domains to target official docs or recent sources

Extract Returns Empty or Partial Content

  1. Try extract_depth: "advanced" for JavaScript-rendered pages
  2. Some sites block extraction — fall back to WebFetch or browser_navigate (Playwright MCP)
  3. Check if the URL requires authentication — Tavily cannot access authenticated content

Crawl Produces Too Much Output

  1. Reduce max_depth (default 1 is usually sufficient)
  2. Reduce max_breadth (default 20 — try 5-10 for targeted crawls)
  3. Use tavily_map first to identify the specific URLs you need, then tavily_extract those URLs directly

Research Takes Too Long

tavily_research makes multiple internal API calls. If it's too slow:

  1. Use tavily_search with search_depth: "advanced" instead
  2. Run multiple targeted tavily_search calls in parallel
  3. Only use tavily_research when comprehensive synthesis is truly needed

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.08%
按下载量换算71

Claude

32.39%
按下载量换算69

Cursor

18.01%
按下载量换算39

Gemini CLI

9.49%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills