dsh-tavily
Verified@pymodel/dsh-tavily Β· v0.3.0 Β· MIT Β· Web UI
Tavily web search + Tavily MCP for DSH: settings toggle to official DeepSeek, keyless search, MCP extract/crawl/map
Install
dsh plugin add @pymodel/dsh-tavily Confirm the layer applied with dsh --profile default --dump-config β see the install guide.
Source
Tags
Creators
Readme
@pymodel/dsh-tavily
Tavily for DeepSeek Harness: adds the Tavily Search API as a web search provider, plus a Tavily MCP bridge β keyless search / extract, crawl / map with an API key.
Install
npm (stable, official recommendation):
dsh plugin --profile web add @pymodel/dsh-tavily
dsh web
Or follow GitHub (latest commit on the repo):
dsh plugin --profile web add github:pymodel/dsh-research-plugins#path:packages/dsh-tavily
Settings β Plugins β Plugin settings β Tavily web search: turn the toggle on. The key is optional; leave it blank for keyless search. Test connection at the bottom-left checks that search works now (including keyless).
Pin a commit:
dsh plugin --profile web add github:pymodel/dsh-research-plugins#path:packages/dsh-tavily#<commit>
Remove:
dsh plugin --profile web remove dsh-tavily
dsh.bundleΒ· prebuiltlib/Β· git install does not needallowBuilds
Features
- Settings toggle: off = official DeepSeek, on = Tavily β no uninstall to switch back
- No key uses Tavily keyless; a key uses
Authorization: Bearer - Bottom-left connection test: one real Tavily search (
max_results: 1); keyless if no key, account quota if a key is saved (1 credit) - Timeout, abort, official host lock, drop results without a url
- Settings card design refresh: collapsed-header mode badge (Official DeepSeek / Tavily keyless / Tavily API key) with a status dot, so the active provider is visible at a glance
- Accessible async feedback: polite live-region announcements for connection-test and save outcomes, inline button spinners, connected-success tint β all honoring
prefers-reduced-motion - Show/hide reveal for the API key input (with autocomplete and spellcheck off)
- Opt-in adoption of the latest Tavily Search parameters via plugin config:
searchDepth(basic/advanced/fast) andautoParameters(lets Tavily tune topic and depth per query; explicit values still win) - Key and toggle live on the credentials plane, not the settings file
- Tavily MCP bridge:
mcp__tavily__tavily-search/tavily-extractwork keyless;crawl/mapunlock withTAVILY_API_KEY
Behavior
Web search
| Toggle | Key | web_search |
|---|---|---|
| Off (default) | β | official DeepSeek |
| On | empty | Tavily keyless |
| On | set | Tavily account quota |
Provider id: tavily.
MCP tools
The bundled MCP row registers Tavily's hosted MCP server under the tavily namespace and works out of the box:
- Keyless (default): the required
X-Tavily-Access-Mode: keylessheader selects free rate-limited access with thetavily-searchandtavily-extracttools. - Keyed: set
TAVILY_API_KEYto unlockcrawl/mapand use your account quota:
export TAVILY_API_KEY=tvly-...
or in a project .env / $DSH_HOME/.env:
TAVILY_API_KEY=tvly-...
The key goes into the Authorization: Bearer header at load time β never into the endpoint URL and never into YAML. A key added to .env needs a dsh web restart.
Credentials
| Ref | Meaning |
|---|---|
TAVILY_API_KEY |
Optional (search). Present = account quota; absent = keyless |
TAVILY_SEARCH_ENABLED |
Present = on; unset = off |
The search key and toggle are stored on the credentials plane ($DSH_HOME/.credentials.yaml). The MCP bridge reads TAVILY_API_KEY from the launch environment instead, because MCP rows resolve before credentials are materialized. Do not commit real keys.
Updates
- 0.3.0 Settings-card design refresh informed by current UI/a11y guidance (ARIA live regions for async status,
prefers-reduced-motionsupport): header mode badge with status dot, spinner states on Test/Save, saved confirmation announcement, show/hide key toggle. Server provider adopts the latest Tavily Search API surface behind opt-in config:searchDepthincluding the newfasttier, andauto_parameters. - 0.2.0 MCP bridge: keyless mode via
X-Tavily-Access-Mode: keyless(row always on); keyed auth moved from URL query parameter toAuthorization: Bearerheader. Search provider: caller cancellation preserved on runtimes withoutAbortSignal.any. - 0.1.0 First release as
@pymodel/dsh-tavily. Web search provider with settings toggle (off = official DeepSeek, on = Tavily) plus a Tavily MCP bridge (extract / crawl / map). English-only localisation.