fix: Correct Tavily MCP package name in documentation (#388)

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 <moshe_a@ituran.com>
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Moshe Anconina
2025-09-25 06:31:13 +03:00
committed by GitHub
parent 3d388addfb
commit 297bdd1062

View File

@@ -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}"}
}
}