smithery/binome-dev

searching-web

Searches the web using Tavily API for real-time information. Use when the user needs current information, wants to search the internet, or asks questions requiring up-to-date web data.

Installation

$ npx skills add smithery/binome-dev --skill searching-web

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/binome-dev.

npx skills add smithery/binome-dev

Browse all from smithery/binome-dev

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,552 B
  • docs SUMMARY.md 205 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Web Search Tools

Tools for searching the web using the Tavily API.

Requirements

Set environment variable:

  • TAVILYAPIKEY: Your Tavily API key

Basic Search

result = await tavily_search(
    query="latest Python release",
    max_results=5
)

Response format

{
  "success": true,
  "data": {
    "results": [
      {
        "title": "Result Title",
        "url": "https://example.com",
        "content": "Snippet of the page content...",
        "score": 0.95
      }
    ],
    "query": "latest Python release"
  }
}

Advanced Options

result = await tavily_search(
    query="machine learning tutorials",
    max_results=10,
    search_depth="advanced",
    include_domains=["github.com", "arxiv.org"],
    exclude_domains=["pinterest.com"]
)

Parameters

Parameter Type Description
query str Search query (required)
max_results int Number of results (default: 5)
search_depth str "basic" or "advanced"
include_domains list Only search these domains
exclude_domains list Exclude these domains

When to Use

  • Finding current information not in training data
  • Researching recent events or news
  • Looking up documentation or tutorials
  • Fact-checking with web sources