From 297bdd10626f005c0ac6c737f8065496febb3ac7 Mon Sep 17 00:00:00 2001 From: Moshe Anconina Date: Thu, 25 Sep 2025 06:31:13 +0300 Subject: [PATCH] fix: Correct Tavily MCP package name in documentation (#388) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The documentation incorrectly referenced @tavily/mcp which doesn't exist. The correct package name is tavily-mcp, as confirmed by: - The setup script already uses tavily-mcp@0.1.2 - NPM registry shows tavily-mcp exists - @tavily/mcp returns 404 not found This fix ensures users can successfully configure Tavily MCP server by following the documentation. 🤖 Generated with Claude Code Co-authored-by: moshe_anconina Co-authored-by: Claude --- Docs/User-Guide/mcp-servers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/User-Guide/mcp-servers.md b/Docs/User-Guide/mcp-servers.md index 19def2f..2404096 100644 --- a/Docs/User-Guide/mcp-servers.md +++ b/Docs/User-Guide/mcp-servers.md @@ -185,7 +185,7 @@ export TAVILY_API_KEY="tvly-your_api_key_here" }, "tavily": { "command": "npx", - "args": ["-y", "@tavily/mcp@latest"], + "args": ["-y", "tavily-mcp@latest"], "env": {"TAVILY_API_KEY": "${TAVILY_API_KEY}"} } }