DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Tavily Search — DSH Plugin for DeepSeek Harness
← Plugins

dsh-tavily-search

Tavily Search

Tavily-backed search provider (direct Tavily Search API, no LLM tokens) for the DeepSeek Harness web capability seam (ctx.web)

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-tavily-search@0.1.2
READMECompatibilityVersions

Compatibility and provenance

Tavily Search is published as dsh-tavily-search and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
9/20/2026

Versions

0.1.0stable
8/20/2026
0.1.2
stable
8/14/2026
0.1.1stable
8/14/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
16.8 kB
Files
5
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
77
Last push
8/14/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-tavily-search

DeepSeek Harness (DSH) 的 Tavily 网页搜索插件。

通过 Tavily Search API 直连提供 web-search-tavily 网页搜索工具,不消耗任何 LLM token——搜索费用只走 Tavily API 额度,Tavily 本身有免费额度。

特性

  • 直接调用 api.tavily.com/search,无模型参与,搜索不烧 token
  • 注册为 DSH web seam 的搜索 provider(id: tavily-official),工具名为 web-search-tavily
  • 凭据通过 DSH 凭据服务或环境变量注入,API key 由你自己保管
  • 标准 bundle 插件:一条命令装好并自动挂载,无需手改配置
  • 纯 JS(ESM),无构建步骤

安装

需要 DSH 支持的环境(官方要求 Node.js 22.19+)。在 DSH profile 里执行:

dsh plugin --profile web add dsh-tavily-search

装完重启 dsh web 即可使用。dsh plugin 是 profile 目录里的 pnpm 转发层;若首次安装提示 ERR_PNPM_IGNORED_BUILDS,按提示在 profile 的 pnpm-workspace.yaml 的 allowBuilds 里加入相应依赖后重试。

配置

1. 填写 API key

在 Tavily 官网 注册获取自己的 API key,然后任选一种方式提供:

  1. DSH 凭据服务(推荐):把 TAVILY_API_KEY 存进 DSH 的凭据存储;
  2. 环境变量:启动 dsh web 前导出 TAVILY_API_KEY;
  3. 配置文件里直接写(不推荐,key 会落盘):见下方覆盖配置中的 apiKey 字段。

2.(可选)覆盖默认配置

插件默认配置(apiKeyEnv: TAVILY_API_KEY、searchDepth: basic、includeAnswer: true)一般够用。需要调整时,在 profile 的 cordis.patch.yml 里按相同的行 id 覆盖:

# ~/.dsh/profiles/<name>/cordis.patch.yml
- id: web-search-tavily
  name: dsh-tavily-search
  config:
    apiKeyEnv: TAVILY_API_KEY   # 环境变量名,默认 TAVILY_API_KEY
    searchDepth: advanced       # basic | advanced,advanced 更贵更慢但更全
    includeAnswer: true         # 是否让 Tavily 生成自然语言回答

注意:按 id 覆盖时 config 是整段替换(不是深合并),要改的键都要写上。

3.(可选)把默认搜索切到 Tavily

想让搜索默认走 Tavily、并停用官方 DeepSeek 搜索(避免搜索消耗 LLM token),在 profile 的 cordis.patch.yml 追加:

- id: web
  name: '@deepseek-ai/dsh-web'
  config:
    searchProvider: tavily-official

- id: web-search-deepseek
  name: '@deepseek-ai/dsh-web-search-deepseek'
  disabled: true

4. 重启生效

dsh web

重启后对话里就能用 include:web-search-tavily 工具了。

配置项

字段类型默认值说明
apiKeystring (secret)—直接写 key(不推荐,会落盘)
apiKeyEnvstring (credential-ref)TAVILY_API_KEY从凭据服务/环境读取 key 时用的名字
baseURLstringhttps://api.tavily.comTavily API 地址,自建中转时可覆盖
searchDepthstringbasicbasic | advanced
includeAnswerbooleantrue是否返回 Tavily 生成的自然语言回答

验证是否装好

dsh --profile web --dump-config   # 应出现 id: web-search-tavily 这一层

常见问题

Q: 搜索报 WEB_PROVIDER_CREDENTIAL_MISSING? A: 没找到 key。确认 TAVILY_API_KEY 已通过凭据服务或环境变量提供,或检查 apiKeyEnv 拼写。

Q: 和官方 DeepSeek 搜索有什么区别? A: 官方搜索走 DeepSeek 模型调用(每次搜索消耗 LLM token);本插件直连 Tavily,只花 Tavily 额度。

Q: API key 会被共享吗? A: 不会。key 只存在于你自己的 DSH 凭据存储/环境变量里,插件代码中没有任何 key,也不会上传任何 key。

License

MIT