Tavily MCP Sse MCP Server

Tavily MCP Server implementation that uses fastmcp and supports both **sse** and **stdio** transports. To use this server, you need a Tavily account

Local serverstdio

What is the Tavily MCP Sse MCP server?

Tavily mcp sse mcp server connects Tavily MCP Sse to AI assistants that speak the Model Context Protocol. Tavily MCP Server implementation that uses fastmcp and supports both sse and stdio transports. To use this server, you need a Tavily account and a Tavily API key, which must be loaded into the TAVILY_API_KEY environment variable.

What Tavily MCP Sse does

Tavily MCP Server implementation that uses fastmcp and supports both sse and stdio transports. To use this server, you need a Tavily account and a Tavily API key, which must be loaded into the TAVILY_API_KEY environment variable.

Tools it exposes

Once connected, the assistant can call this tool directly:

  • Real — time web search capabilities through the tavily-search tool

Installing the tavily mcp sse mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply one environment variable: TAVILY_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • git installed. (To clone the repo) - uv installed. - docker installed (Optional: If you are planning to use the SSE server inside a docker container). To install uv in Linux and MacOS type this in your terminal:

Where it fits

Search and scraping servers exist to fix the single most common failure of any assistant: answering from stale training data instead of what is on the web today. Tavily MCP Sse sits in that group, and the shape of its toolset — Real — tells you what it is really for. Worth comparing against the other search web scraping servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by MertAtesmen.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the tavily mcp sse mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Realtime web search capabilities through the tavily-search tool

How to install the Tavily MCP Sse MCP server

# Running on STDIO

```json
{
  "mcpServers": {
    "tavily-mcp-server": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "<LOCATION-TO-THE-REPO>",
        "tavily-mcp-stdio"
      ],
      "env": {
        "TAVILY_API_KEY": "<YOUR-API-KEY>"
      }
    }
  }
}

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

Configuration

  • git installed. (To clone the repo) - uv installed. - docker installed (Optional: If you are planning to use the SSE server inside a docker container). To install uv in Linux and MacOS type this in your terminal:
VariableDescriptionRequired
TAVILY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Tavily MCP Sse to Real.

Frequently asked questions

It connects Tavily MCP Sse to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Real) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Tavily MCP Sse directly.