MCP Tavily Search Server

by spences10
Verified

tavily_qna_search

Get direct answers to questions using Tavily search

Input Schema

NameRequiredDescriptionDefault
include_sourcesNoInclude source citations in the answer
queryYesQuestion to be answered
response_formatNoFormat of the answer responsetext

Input Schema (JSON Schema)

{ "properties": { "include_sources": { "default": true, "description": "Include source citations in the answer", "type": "boolean" }, "query": { "description": "Question to be answered", "type": "string" }, "response_format": { "default": "text", "description": "Format of the answer response", "enum": [ "text", "json" ], "type": "string" } }, "required": [ "query" ], "type": "object" }