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

@chantezy/mcp-jingwei

v1.0.2

Published

精卫平台产品工作流技能集合 MCP Server(需求讨论 / 版本文案 / 竞品分析 / 文档转帮助中心)

Readme

@chantezy/mcp-jingwei

精卫平台(4399 内部工具)产品工作流技能集合,以 MCP Server 形式分发。 覆盖需求方案讨论、版本更新文案、竞品/平台拆解分析、需求文档转帮助中心四大场景。

这是什么

一个 MCP Server,把精卫平台相关的产品工作流技能打包发布到 npm。各 IDE / AI 客户端通过 npx 拉取最新版,调用三个工具即可按需加载技能内容:

| 工具 | 作用 | |------|------| | list_skills | 列出所有可用技能(名称 + 描述) | | get_skill | 获取指定技能的完整内容(剥离 frontmatter 的正文) | | get_reference | 获取指定技能的参考文档(仅部分技能有 references/ 目录) |

包含技能

| 技能 | 方向 | 说明 | |------|------|------| | jingwei-product-discussion | 需求方案讨论 | 文档系统 + 项目管理系统的需求分析、方案发散、竞品参考 | | jingwei-version-update-description | 版本更新文案 | 按飞书风格生成两句话功能更新介绍 | | product-platform-analysis | 平台/竞品分析 | 基于链接做产品结构拆解与竞品对标,输出 MD 报告 | | doc-to-help-center | 文档转帮助中心 | 把 PRD 改写为面向普通用户的帮助中心教程 |

在 IDE 中接入

任何支持 MCP 的客户端,配置如下:

{
  "mcpServers": {
    "jingwei": {
      "command": "npx",
      "args": ["--yes", "@chantezy/mcp-jingwei@latest"]
    }
  }
}
  • --yes:跳过 npx 首次安装确认
  • @latest:强制拉最新版,避免本地缓存旧版本

接入后重启客户端,在对话中输入「列出所有可用的精卫平台技能」即可验证。

本地调试

开发时直接调用本地构建产物,无需走 npm:

{
  "mcpServers": {
    "jingwei": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"],
      "env": { "DEBUG": "1" }
    }
  }
}

启动后 stderr 会输出已加载技能数量,便于排查同步问题。

更新流程

技能内容随 git push 触发 GitHub Actions 自动同步、编译、发布到 npm(通过 Trusted Publisher / OIDC 无 token 发布)。各客户端下次启动时拉 @latest 即获取最新版。

License

MIT