MCP Tavily Search Server

by spences10
Verified

tavily_get_search_context

Generate context for RAG applications using Tavily search

Input Schema

NameRequiredDescriptionDefault
max_tokensNoMaximum length of generated context
queryYesSearch query for context generation
response_formatNoFormat of the context responsetext

Input Schema (JSON Schema)

{ "properties": { "max_tokens": { "default": 2000, "description": "Maximum length of generated context", "type": "number" }, "query": { "description": "Search query for context generation", "type": "string" }, "response_format": { "default": "text", "description": "Format of the context response", "enum": [ "text", "json" ], "type": "string" } }, "required": [ "query" ], "type": "object" }