npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dsh-all-search

v0.2.1

Published

DeepSeek Harness plugin: AnySearch-backed web search provider (aggregates exa/tavily/firecrawl via one MCP gateway) registered into ctx.web.

Downloads

1,279

Readme

dsh-all-search

给 DeepSeek Harness 加一个 AnySearch 搜索 provider,注册进 ctx.web。AnySearch 是单 MCP 网关,一把 API key 聚合 exa / tavily / firecrawl / context7 等多家搜索。

配置了 api_key 时查询走 AnySearch 网关。没有 AnySearch key 时,同一个 anysearch provider 仍可用,改走 Firecrawl POST /v1/search,不带 Authorization(keyless)。若设置可选的 firecrawl_api_key,则发送 Authorization: Bearer 并使用你自己的配额。共享出口 IP 的 NAT/CI 会共用这份无 key 日额度。

pi-all-search 移植。

English · 中文

为什么需要它

dsh 自带 Exa / Perplexity / DeepSeek 搜索。本插件补 AnySearch:一把 key 多个后端,不用为每家单独配凭据。

快速开始

dsh plugin --profile web add dsh-all-search

provider 以 anysearch 注册到 ctx.web,内置的 web_search 工具会自动识别,与自带 provider 并存。

- id: all-search
  name: dsh-all-search
  config:
    api_key: <你的 anysearch key>   # 可选

| 键 | 必填 | 说明 | |---|---|---| | api_key | – | AnySearch key。配置后查询走 AnySearch 网关。 | | base_url | – | MCP 端点覆盖 | | firecrawl_api_key | – | 可选 Firecrawl key(Bearer 配额)。配置 AnySearch 时还启用 Developer Index 分支 |

没有 AnySearch key 时 provider 仍 available() = true,走 Firecrawl keyless。共享出口 IP 的 NAT/CI 会共用日额度;需要独立配额时设置 firecrawl_api_key。

隐私

  • key 只存在于你的配置文件——不写日志
  • 有 api_key 时只向 AnySearch 网关发送查询词和结果数量
  • 没有 api_key 时查询发往 Firecrawl /v1/search

开发

npm install
npm run typecheck
npm test          # 结果解析 / maxResults / HTTP 错误 / keyless Firecrawl 路由
npm run build

真实搜索测试:

node --import tsx tests/real/real-search.mjs

License

MIT