feat: add Tavily as opt-in parallel web search provider#14
Merged
Pthahnix merged 1 commit intoJun 1, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Tavily as a configurable alternative web search provider alongside the existing Brave Search integration. This is an additive migration — Brave Search remains fully functional and is the default; Tavily is opt-in for users who configure
TAVILY_API_KEY.Changes
Dependencies
tavily-mcp(^0.1.4) topackage.jsonMCP Configuration
tavily-searchstdio MCP server entry inmcp.example.jsonwithTAVILY_API_KEYenv varbrave-searchentry is unchangedDocumentation (
README.md)TAVILY_API_KEYenv var documentation sectionSkills
skills/web-search/SKILL.md— Added provider-selection clause: prefertavily_searchif the Tavily MCP server is active, else usebrave_web_searchskills/broad-web-search/SKILL.md— Same provider-selection clause, updated hard constraints to reference both providers' parameter namesFiles Changed
package.jsonmcp.example.jsonREADME.mdskills/web-search/SKILL.mdskills/broad-web-search/SKILL.mdEnvironment Variable Changes
TAVILY_API_KEY— Tavily API key (opt-in, get free key at https://app.tavily.com)BRAVE_API_KEYis unchangedNotes for Reviewers
brave_web_searchdirectly. These are intentionally left unchanged under the additive strategy — they continue to work with Brave Search. The two canonical web-search SOPs now handle provider selection, which covers the primary entry points.package.jsonandmcp.example.jsonverified.Automated Review
tavily-mcpdependency, mcp.example.json gains a well-formed server config block, README.md updates counts and documentation, and both skill files gain provider-selection clauses with proper fallback logic. The implementation is purely additive — Brave Search is fully preserved. One minor inconsistency: the frontmatterdescriptionfield ofbroad-web-search/SKILL.mdstill hard-referencesbrave_web_search count=10while the body now supports both providers.