MCP Tavily Search MCP Server

MCP server for integrating Tavily search API with LLMs, providing web search, RAG context generation, and QnA capabilities

Local serverstdio

What is the MCP Tavily Search MCP server?

If you already use MCP Tavily Search, the mcp tavily search mcp server is the piece that lets your assistant work with it directly. MCP server for integrating Tavily search API with LLMs, providing web search, RAG context generation, and QnA capabilities.

What the server does

The functionality of this tool is now available in mcp-omnisearch, which combines multiple MCP tools in one unified package.

  • 🔍 Advanced web search capabilities through Tavily API
  • 🤖 AI-generated summaries of search results
  • 🎯 Domain filtering for higher quality results
  • 📊 Configurable search depth and parameters
  • 🧠 Context generation for RAG applications
  • ❓ Direct question answering capabilities

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • tavily_search — Search the web using Tavily Search API, optimized for high-quality, factual results
  • tavily_get_search_context — The tavily_get_search_context tool exposed by this server
  • tavily_qna_search — The tavily_qna_search tool exposed by this server
  • Setup — The Setup tool exposed by this server
  • Publishing — The project uses changesets for version management. To publish:

Credentials and setup notes

Configuration is passed through the environment: TAVILY_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

The server ships on npm as mcp-tavily-search, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Where it fits

This sits in the search and retrieval group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Tavily Search's toolset — tavily_search, tavily_get_search_context, tavily_qna_search and 2 more — is a fair guide to whether it matches your workflow. It is maintained by spences10; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP Tavily Search's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
tavily_searchSearch the web using Tavily Search API, optimized for high-quality, factual results.
tavily_get_search_contextThe tavily_get_search_context tool exposed by this server.
tavily_qna_searchThe tavily_qna_search tool exposed by this server.
SetupThe Setup tool exposed by this server.
PublishingThe project uses changesets for version management. To publish:

How to install the MCP Tavily Search MCP server

{
	"mcpServers": {
		"mcp-tavily-search": {
			"command": "npx",
			"args": ["-y", "mcp-tavily-search"],
			"env": {
				"TAVILY_API_KEY": "your-tavily-api-key"
			}
		}
	}
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
TAVILY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Tavily Search to tavily search.
  • Use MCP Tavily Search to tavily get search context.
  • Use MCP Tavily Search to tavily qna search.

Frequently asked questions

It connects MCP Tavily Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (tavily_search, tavily_get_search_context, tavily_qna_search, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Tavily Search directly.