Install
openclaw skills install tavily-wsConnect agents to the web using Tavily APIs and SDKs. Use for executing search, scraping URLs, semantic crawls, mapping sites, and asynchronous deep research workflows.
openclaw skills install tavily-wsThis skill extends Manus's capabilities by providing highly specialized workflows, reference guides, and helper scripts to integrate Tavily's search, extraction, and research APIs. It is designed to be highly token-efficient, leveraging progressive disclosure.
basic (1 credit) for simple queries (e.g., factual lookups, company names).advanced (2 credits) for complex research questions requiring multi-query expansion and synthesis.fast or ultra-fast (1 credit) for latency-critical applications (e.g., real-time chat, voice assistants).query to trigger Intent-Based Extraction.chunks_per_source (range: 1 to 5) to save downstream LLM context window tokens.retry-after header during 429 Too Many Requests responses.from tavily import TavilyClient
client = TavilyClient(api_key="tvly-YOUR_API_KEY")
response = client.search(
query="quantum computing trends 2026",
search_depth="advanced",
max_results=5
)
import asyncio
from tavily import AsyncTavilyClient
async def extract_links():
client = AsyncTavilyClient(api_key="tvly-YOUR_API_KEY")
response = await client.extract(
urls=["https://example.com/ai-agents"],
query="agent orchestration",
chunks_per_source=3
)
return response