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-jina

v0.1.0

Published

Jina MCP native plugin with proxy + tool allowlist support

Readme

dsh-jina

一个 DeepSeek Harness(dsh)插件:连接 Jina AI MCP 服务器,把它的工具注册为 dsh 原生工具。

English documentation: docs/README.EN.md

特性

与通用的 @deepseek-ai/dsh-mcp-client 桥接不同,本插件:

  • 支持配置 HTTP 代理(proxyUrl)——适合 mcp.jina.ai 无法直连的网络环境;
  • 支持工具白名单(enabledTools)——只注册你需要的工具;
  • 以稳定的 jina__<toolName> 名称注册工具(例如 jina__read_url)。

安装

从 GitHub 安装:

dsh plugin --profile web add github:mouyase/dsh-jina

从 npm 安装:

dsh plugin --profile web add dsh-jina

从本地目录安装:

dsh plugin --profile web add file:./dsh-jina

配置

在 dsh patch 层中添加条目——例如全局 $DSH_HOME/cordis.patch.yml(所有 profile 生效),或仅 web profile 的 $DSH_HOME/profiles/web/cordis.patch.yml

- insert:
    - id: dsh-jina
      name: 'dsh-jina'
      config:
        proxyUrl: 'http://127.0.0.1:7890'   # 空字符串 = 直连
        apiKeyEnv: 'JINA_API_KEY'           # 推荐用环境变量提供 key
        enabledTools: ['read_url', 'parallel_read_url', 'primer']  # 空数组 = 注册全部

然后照常启动 dsh:

dsh web --patch dsh.mcp.yml --port 3080

配置项

| 配置项 | 默认值 | 说明 | |---|---|---| | url | https://mcp.jina.ai/v1 | Jina MCP 端点 | | apiKey | '' | 字面量 Jina API key。推荐优先使用 apiKeyEnv。 | | apiKeyEnv | JINA_API_KEY | 用于解析 API key 的环境变量名 | | proxyUrl | http://127.0.0.1:7890 | Jina 请求走 HTTP 代理;空字符串 = 直连 | | enabledTools | [] | 工具白名单(Jina 原始工具名)。空数组 = 注册全部工具。 | | toolCallTimeoutMs | 60000 | 单次工具调用超时 | | failOnStartupError | false | 初始连接失败时是否拒绝插件激活 |

工具命名

Jina 原始工具名会加上 jina__ 前缀:

jina__read_url
jina__parallel_read_url
jina__primer
jina__search_web
...

完整的 Jina 工具列表见 Jina MCP 文档

注意事项

  • apiKey 在 dsh settings schema 中标记为 role('secret'),不会通过 settings.describe 暴露。
  • 修改 enabledTools / proxyUrl / url 后需要重启 dsh 实例才生效。
  • 本插件注册了 settings namespace(dsh-jina),但 dsh Web UI 只渲染 host api-proxy 白名单内的 namespace,外部插件目前不会显示在插件配置页;请通过 patch 文件或 settings.yaml 配置。

许可

MIT