drio
Open app

MCP2Tavily

Source

一个MCP服务器,让你的Claude Cline以及Langchain实现网络搜索功能。An MCP server that allows your Claude Cline and Langchain to implement network search functions.

Catalog onlyCatalog onlySTDIO

Overview

MCP2Tavily is an MCP protocol server that enables web search functionality using the Tavily API, allowing integration with Claude Cline and Langchain.

To use MCP2Tavily, clone the repository, set up your environment with the required dependencies, and install it as a Claude extension. You can also run it in development mode using MCP Inspector.

  • Implements web search functionality via the Tavily API. - Allows integration with Claude Cline and Langchain. - Provides tools for searching the web and retrieving information in both English and Chinese.
  1. Enhancing Claude Cline with web search capabilities.
  2. Integrating web search into Langchain applications.
  3. Testing and developing web search functionalities using MCP Inspector.

Add to your AI client

Use these steps to connect MCP2Tavily in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp2tavily-mcp2everything": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp2tavily-mcp2everything": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp2tavily-mcp2everything": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp2tavily-mcp2everything": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp2tavily-mcp2everything": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp2tavily-mcp2everything": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp2tavily-mcp2everything"
      ]
    }
  }
}

FAQ

What are the prerequisites for using MCP2Tavily?

You need Python 3.11+, the UV package manager, and a Tavily API key.

Is there a graphical interface for MCP2Tavily?

Yes, you can use the MCP Inspector for testing and development.

Can I use MCP2Tavily without a Tavily API key?

No, the Tavily API key is required to access the web search functionalities.