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

@waxilo/cv-mcp

v0.1.4

Published

MCP server for CV Builder — create/list/get/duplicate/update resume JSON via AI tools

Readme

@waxilo/cv-mcp

CV Builder 的 MCP Server:在 Cursor / Claude Desktop 里用工具读写简历 JSON(不改 HTML)。

环境变量

| 变量 | 必填 | 说明 | |------|------|------| | CV_API_TOKEN | 是 | 在网页 MCP 接入 创建的 API Key(cvk_…) | | CV_API_BASE | 否 | API 根地址,默认 https://cv-api.sloan.dpdns.org |

快速接入

  1. 打开 CV Builder → MCP 接入
  2. 创建 API Key
  3. 一键复制安装提示词,粘贴到 Cursor / Claude 等 Agent
  4. Agent 会写入全局 MCP(npx -y @waxilo/cv-mcp
  5. 已安装、只需升级时:同一页 一键复制更新提示词(清 npx 缓存 → 拉最新包 → 重启 MCP)

更新 MCP

配置仍是 npx -y @waxilo/cv-mcp 时,优先用网页上的更新提示词;或手动:

npx clear-npx-cache
# 然后在 Cursor Settings → MCP 重启 cv-builder

密钥未吊销则无需重建。改简历请默认 duplicate_resume 后再 update_*。锁定原件的直接改写会被 API 拒绝(RESUME_LOCKED),可先复制再改副本。

手动配置示例:

{
  "mcpServers": {
    "cv-builder": {
      "command": "npx",
      "args": ["-y", "@waxilo/cv-mcp"],
      "env": {
        "CV_API_BASE": "https://cv-api.sloan.dpdns.org",
        "CV_API_TOKEN": "cvk_你的API_Key"
      }
    }
  }
}

工具

| Tool | 作用 | |------|------| | list_resumes | 列出简历摘要(含 is_locked) | | create_resume | 从零新建;可选传入完整 data 一次写入(适合迁移旧简历) | | get_resume | 拉取完整 JSON | | duplicate_resume | 推荐:深拷贝副本(可自定义标题),再改副本,避免动原件 | | update_resume | 整份 data 写回 | | update_basics | 合并更新 basics | | update_section | 按 id/type 合并更新某一模块 | | validate_resume_data | 校验结构 |

新用户 / 空账号:create_resume(可带 data)→ 网页刷新查看。

已有简历:list_resumesduplicate_resumeget_resume(副本)update_*。锁定原件也可复制;副本默认未锁定。

内置模板:modern / classic / minimal / technical / business(默认 modern)。

本地开发(维护者)

cd mcp
npm install
npm run build
npm run dev