tavily-search-pro

27
0
Source

Tavily AI search platform with 5 modes: Search (web/news/finance), Extract (URL content), Crawl (website crawling), Map (sitemap discovery), and Research (deep research with citations). Use for: web search with LLM answers, content extraction, site crawling, deep research.

Install

mkdir -p .claude/skills/tavily-search-pro && curl -L -o skill.zip "https://mcp.directory/api/skills/download/1768" && unzip -o skill.zip -d .claude/skills/tavily-search-pro && rm skill.zip

Installs to .claude/skills/tavily-search-pro

About this skill

Tavily Search ๐Ÿ”Ž

AI-powered web search platform with 5 modes: Search, Extract, Crawl, Map, and Research.

Requirements

  • TAVILY_API_KEY environment variable

Configuration

Env VariableDefaultDescription
TAVILY_API_KEYโ€”Required. Tavily API key

Set in OpenClaw config:

{
  "env": {
    "TAVILY_API_KEY": "tvly-..."
  }
}

Script Location

python3 skills/tavily/lib/tavily_search.py <command> "query" [options]

Commands

search โ€” Web Search (Default)

General-purpose web search with optional LLM-synthesized answer.

python3 lib/tavily_search.py search "query" [options]

Examples:

# Basic search
python3 lib/tavily_search.py search "latest AI news"

# With LLM answer
python3 lib/tavily_search.py search "what is quantum computing" --answer

# Advanced depth (better results, 2 credits)
python3 lib/tavily_search.py search "climate change solutions" --depth advanced

# Time-filtered
python3 lib/tavily_search.py search "OpenAI announcements" --time week

# Domain filtering
python3 lib/tavily_search.py search "machine learning" --include-domains arxiv.org,nature.com

# Country boost
python3 lib/tavily_search.py search "tech startups" --country US

# With raw content and images
python3 lib/tavily_search.py search "solar energy" --raw --images -n 10

# JSON output
python3 lib/tavily_search.py search "bitcoin price" --json

Output format (text):

Answer: <LLM-synthesized answer if --answer>

Results:
  1. Result Title
     https://example.com/article
     Content snippet from the page...

  2. Another Result
     https://example.com/other
     Another snippet...

news โ€” News Search

Search optimized for news articles. Sets topic=news.

python3 lib/tavily_search.py news "query" [options]

Examples:

python3 lib/tavily_search.py news "AI regulation"
python3 lib/tavily_search.py news "Israel tech" --time day --answer
python3 lib/tavily_search.py news "stock market" --time week -n 10

finance โ€” Finance Search

Search optimized for financial data and news. Sets topic=finance.

python3 lib/tavily_search.py finance "query" [options]

Examples:

python3 lib/tavily_search.py finance "NVIDIA stock analysis"
python3 lib/tavily_search.py finance "cryptocurrency market trends" --time month
python3 lib/tavily_search.py finance "S&P 500 forecast 2026" --answer

extract โ€” Extract Content from URLs

Extract readable content from one or more URLs.

python3 lib/tavily_search.py extract URL [URL...] [options]

Parameters:

  • urls: One or more URLs to extract (positional args)
  • --depth basic|advanced: Extraction depth
  • --format markdown|text: Output format (default: markdown)
  • --query "text": Rerank extracted chunks by relevance to query

Examples:

# Extract single URL
python3 lib/tavily_search.py extract "https://example.com/article"

# Extract multiple URLs
python3 lib/tavily_search.py extract "https://url1.com" "https://url2.com"

# Advanced extraction with relevance reranking
python3 lib/tavily_search.py extract "https://arxiv.org/paper" --depth advanced --query "transformer architecture"

# Text format output
python3 lib/tavily_search.py extract "https://example.com" --format text

Output format:

URL: https://example.com/article
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
<Extracted content in markdown/text>

URL: https://another.com/page
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
<Extracted content>

crawl โ€” Crawl a Website

Crawl a website starting from a root URL, following links.

python3 lib/tavily_search.py crawl URL [options]

Parameters:

  • url: Root URL to start crawling
  • --depth basic|advanced: Crawl depth
  • --max-depth N: Maximum link depth to follow (default: 2)
  • --max-breadth N: Maximum pages per depth level (default: 10)
  • --limit N: Maximum total pages (default: 10)
  • --instructions "text": Natural language crawl instructions
  • --select-paths p1,p2: Only crawl these path patterns
  • --exclude-paths p1,p2: Skip these path patterns
  • --format markdown|text: Output format

Examples:

# Basic crawl
python3 lib/tavily_search.py crawl "https://docs.example.com"

# Focused crawl with instructions
python3 lib/tavily_search.py crawl "https://docs.python.org" --instructions "Find all asyncio documentation" --limit 20

# Crawl specific paths only
python3 lib/tavily_search.py crawl "https://example.com" --select-paths "/blog,/docs" --max-depth 3

Output format:

Crawled 5 pages from https://docs.example.com

Page 1: https://docs.example.com/intro
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
<Content>

Page 2: https://docs.example.com/guide
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
<Content>

map โ€” Sitemap Discovery

Discover all URLs on a website (sitemap).

python3 lib/tavily_search.py map URL [options]

Parameters:

  • url: Root URL to map
  • --max-depth N: Depth to follow (default: 2)
  • --max-breadth N: Breadth per level (default: 20)
  • --limit N: Maximum URLs (default: 50)

Examples:

# Map a site
python3 lib/tavily_search.py map "https://example.com"

# Deep map
python3 lib/tavily_search.py map "https://docs.python.org" --max-depth 3 --limit 100

Output format:

Sitemap for https://example.com (42 URLs found):

  1. https://example.com/
  2. https://example.com/about
  3. https://example.com/blog
  ...

research โ€” Deep Research

Comprehensive AI-powered research on a topic with citations.

python3 lib/tavily_search.py research "query" [options]

Parameters:

  • query: Research question
  • --model mini|pro|auto: Research model (default: auto)
    • mini: Faster, cheaper
    • pro: More thorough
    • auto: Let Tavily decide
  • --json: JSON output (supports structured output schema)

Examples:

# Basic research
python3 lib/tavily_search.py research "Impact of AI on healthcare in 2026"

# Pro model for thorough research
python3 lib/tavily_search.py research "Comparison of quantum computing approaches" --model pro

# JSON output
python3 lib/tavily_search.py research "Electric vehicle market analysis" --json

Output format:

Research: Impact of AI on healthcare in 2026

<Comprehensive research report with citations>

Sources:
  [1] https://source1.com
  [2] https://source2.com
  ...

Options Reference

OptionApplies ToDescriptionDefault
--depth basic|advancedsearch, news, finance, extractSearch/extraction depthbasic
--time day|week|month|yearsearch, news, financeTime range filternone
-n NUMsearch, news, financeMax results (0-20)5
--answersearch, news, financeInclude LLM answeroff
--rawsearch, news, financeInclude raw page contentoff
--imagessearch, news, financeInclude image URLsoff
--include-domains d1,d2search, news, financeOnly these domainsnone
--exclude-domains d1,d2search, news, financeExclude these domainsnone
--country XXsearch, news, financeBoost country resultsnone
--jsonallStructured JSON outputoff
--format markdown|textextract, crawlContent formatmarkdown
--query "text"extractRelevance reranking querynone
--model mini|pro|autoresearchResearch modelauto
--max-depth Ncrawl, mapMax link depth2
--max-breadth Ncrawl, mapMax pages per level10/20
--limit Ncrawl, mapMax total pages/URLs10/50
--instructions "text"crawlNatural language instructionsnone
--select-paths p1,p2crawlInclude path patternsnone
--exclude-paths p1,p2crawlExclude path patternsnone

Error Handling

  • Missing API key: Clear error message with setup instructions.
  • 401 Unauthorized: Invalid API key.
  • 429 Rate Limit: Rate limit exceeded, try again later.
  • Network errors: Descriptive error with cause.
  • No results: Clean "No results found." message.
  • Timeout: 30-second timeout on all HTTP requests.

Credits & Pricing

APIBasicAdvanced
Search1 credit2 credits
Extract1 credit/URL2 credits/URL
Crawl1 credit/page2 credits/page
Map1 credit1 credit
ResearchVaries by model-

Install

bash skills/tavily/install.sh

More by openclaw

View all โ†’

seedream-image-gen

openclaw

Generate images via Seedream API (doubao-seedream models). Synchronous generation.

1357

nano-pdf

openclaw

Edit PDFs with natural-language instructions using the nano-pdf CLI.

6911

a-stock-analysis

openclaw

A่‚กๅฎžๆ—ถ่กŒๆƒ…ไธŽๅˆ†ๆ—ถ้‡่ƒฝๅˆ†ๆžใ€‚่Žทๅ–ๆฒชๆทฑ่‚ก็ฅจๅฎžๆ—ถไปทๆ ผใ€ๆถจ่ทŒใ€ๆˆไบค้‡๏ผŒๅˆ†ๆžๅˆ†ๆ—ถ้‡่ƒฝๅˆ†ๅธƒ๏ผˆๆ—ฉ็›˜/ๅฐพ็›˜ๆ”พ้‡๏ผ‰ใ€ไธปๅŠ›ๅŠจๅ‘๏ผˆๆŠข็ญน/ๅ‡บ่ดงไฟกๅท๏ผ‰ใ€ๆถจๅœๅฐๅ•ใ€‚ๆ”ฏๆŒๆŒไป“็ฎก็†ๅ’Œ็›ˆไบๅˆ†ๆžใ€‚Use when: (1) ๆŸฅ่ฏขA่‚กๅฎžๆ—ถ่กŒๆƒ…, (2) ๅˆ†ๆžไธปๅŠ›่ต„้‡‘ๅŠจๅ‘, (3) ๆŸฅ็œ‹ๅˆ†ๆ—ถๆˆไบค้‡ๅˆ†ๅธƒ, (4) ็ฎก็†่‚ก็ฅจๆŒไป“, (5) ๅˆ†ๆžๆŒไป“็›ˆไบใ€‚

479

openai-whisper

openclaw

Local speech-to-text with the Whisper CLI (no API key).

578

trello

openclaw

Manage Trello boards, lists, and cards via the Trello REST API.

478

ui-audit

openclaw

AI skill for automated UI audits. Evaluate interfaces against proven UX principles for visual hierarchy, accessibility, cognitive load, navigation, and more. Based on Making UX Decisions by Tommy Geoco.

187

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

289790

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

213415

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

213296

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

219234

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

172200

rust-coding-skill

UtakataKyosui

Guides Claude in writing idiomatic, efficient, well-structured Rust code using proper data modeling, traits, impl organization, macros, and build-speed best practices.

166173

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.