general-search
Conduct general web searches with customizable parameters like query, result count, depth, and relevance score. Retrieve filtered and relevant results for specific needs using the Tavily API.
Instructions
Perform a general web search using Tavily API
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| maxResults | No | Maximum number of results to return | |
| minScore | No | Minimum relevance score threshold | |
| query | Yes | Search query | |
| searchDepth | No | Search depth level | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "maxResults": {
      "description": "Maximum number of results to return",
      "type": "number"
    },
    "minScore": {
      "description": "Minimum relevance score threshold",
      "type": "number"
    },
    "query": {
      "description": "Search query",
      "type": "string"
    },
    "searchDepth": {
      "description": "Search depth level",
      "enum": [
        "basic",
        "advanced"
      ],
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}