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

@deppon/deppon-cli

v2.5.17

Published

Deppon UI / Pro 组件与 Cursor Skills 的离线 CLI 与 MCP 服务,供 AI Agent 查询文档与示例

Readme

@deppon/deppon-cli

Deppon UI / Pro 组件与 Cursor Skills 的离线 CLI + MCP 服务,供 AI Agent 查询文档、API 与示例源码。

安装

npm install -g @deppon/deppon-cli
# 或项目内
npx @deppon/deppon-cli list

需要 Node.js >=18

快速开始

deppon list                           # 所有 UI + Pro 组件
deppon list ui                        # 仅 @deppon/deppon-ui
deppon list pro                       # 仅 Pro 组件
deppon list skill                     # Cursor Skills 索引

deppon info ProTable                  # Props / API 表格
deppon doc button                     # 完整 Markdown 文档
deppon demo button basic              # 示例 Vue 源码
deppon skill deppon-pro-form          # 读取 SKILL.md

deppon design-spec                    # Pro 设计规范
deppon mcp                            # 启动 MCP(stdio)
deppon mcp --transport sse --port 3000 --host 0.0.0.0   # SSE(JoyAgent 等)
deppon setup --client cursor --mode both

全局参数:--format json|text|markdown--lang zh|en--detail-h

MCP(Cursor / VS Code)

{
    "mcpServers": {
        "deppon": {
            "command": "npx",
            "args": ["-y", "@deppon/deppon-cli", "mcp"]
        }
    }
}

MCP SSE(JoyAgent 等仅支持 URL 的平台)

方式一:全局安装(推荐长期部署)

npm install -g @deppon/deppon-cli@latest
deppon mcp --transport sse --port 3000 --host 0.0.0.0

方式二:npx 临时启动(无需全局安装)

npx @deppon/deppon-cli@latest mcp --transport sse --port 3000 --host 0.0.0.0

npx 会自动下载并运行;终端关闭后服务停止。生产环境建议全局安装并用 pm2 / systemd 等做常驻。

在 JoyAgent「注册 MCP」中填写 SSE 地址,例如:

http://<内网IP>:3000/sse

健康检查:GET http://<host>:3000/health

| 参数 | 默认 | 说明 | | ------------- | ----------- | ----------------------------------------- | | --transport | stdio | stdiosse | | --port | 3000 | SSE 端口 | | --host | 127.0.0.1 | 监听地址;JoyAgent 远程访问时用 0.0.0.0 |

环境变量:DEPPON_MCP_TRANSPORTDEPPON_MCP_PORTDEPPON_MCP_HOST

工具:deppon_listdeppon_infodeppon_docdeppon_demodeppon_skill

与 @deppon/deppon-skills 的关系

| 包 | 作用 | | ----------------------- | ------------------------------------------------- | | @deppon/deppon-cli | 组件文档 / Demo / API 查询 + MCP | | @deppon/deppon-skills | 场景化 Cursor Skills(ProForm 页、ProTable 页等) |

推荐:deppon setup --mode both 后执行 npx deppon-skills-install

维护方(monorepo)

cd packages/deppon-cli
npm run build    # build:metadata + tsc

build:metadatadocs/.cursor/skills/ 生成 data/ 离线知识库。