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

@ymq1218/skillpm-mcp-server

v1.0.1

Published

MCP server for managing Agent Skills via skillpm — install, list, search, and manage reusable AI agent skills.

Readme

skillpm-mcp-server

基于 skillpm 改造的 MCP Server,用于管理 AI Agent Skills。

支持通过百炼(Bailian)平台部署,兼容 MCP 协议 stdio 传输方式。

功能(Tools)

| Tool | 描述 | |------|------| | skill_list | 列出所有已安装的 skill 包 | | skill_install | 从 npm 安装 skill 包并连接到 agent 目录 | | skill_uninstall | 卸载 skill 包 | | skill_search | 在 npm 中搜索可用的 agent skill 包 | | skill_read | 读取已安装 skill 的 SKILL.md 内容 | | skill_init | 创建新的 skill 包脚手架 | | skill_sync | 重新扫描并链接所有 skill 到 agent 目录 | | skill_publish | 校验并发布 skill 包到 npm |

快速使用

本地运行

npx skillpm-mcp-server

百炼平台部署配置

在百炼 MCP 管理中使用"脚本部署"方式,填入以下配置:

{
  "mcpServers": {
    "skillpm": {
      "command": "npx",
      "args": ["-y", "skillpm-mcp-server"],
      "env": {
        "SKILLPM_WORKSPACE": "/tmp/skillpm-workspace"
      }
    }
  }
}

环境变量

| 变量 | 描述 | 默认值 | |------|------|--------| | SKILLPM_WORKSPACE | Skill 包的工作目录 | 当前工作目录 (cwd) |

开发

# 安装依赖
npm install

# 开发模式(监听变更)
npm run dev

# 构建
npm run build

# 启动
npm start

技术栈

  • TypeScript + Node.js (ESM)
  • @modelcontextprotocol/sdk — MCP 协议 SDK
  • gray-matter — SKILL.md frontmatter 解析
  • zod — 参数校验

协议

MIT