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

cvjson-mcp

v1.1.1

Published

MCP server for cv.json — search people who are open to work, and fetch & validate machine-readable CVs, from any AI assistant.

Readme

cvjson-mcp

An MCP server for cv.json — give any AI assistant the power to find people who are open to work and read their structured CVs.

cv.json is the open, machine-readable CV format from cvjson.com / FreeCV. Every FreeCV portfolio publishes one at livelink.cv/<name>/cv.json.

Tools

| Tool | What it does | |------|--------------| | search_open_to_work | Search a live index of real people open to work by skills, role/title, location and recruiter facets — work type (remote/hybrid/onsite), employment type, spoken languages, visa sponsorship, minimum years of experience — with sorting and paging. Returns candidate cards + each person's cv.json URL. | | fetch_cv | Fetch a person's full machine-readable CV by slug or URL. | | validate_cv | Validate any document against the official cv.json schema. | | get_cvjson_schema | Return the cv.json JSON Schema. |

Only already-public data is returned; contact details never are.

Install

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "cvjson": {
      "command": "npx",
      "args": ["-y", "cvjson-mcp"]
    }
  }
}

Restart Claude Desktop — the cvjson tools appear in the 🔌 menu.

Any MCP client (Cursor, Windsurf, custom)

Run it as a stdio server:

npx -y cvjson-mcp

Hosted HTTP endpoint (no install)

Clients that speak the Streamable HTTP transport can connect directly:

https://freecv.org/api/mcp

Try it

Once connected, ask your assistant things like:

"Find me React developers who are open to work." "Fetch the cv.json for ashley and summarise their experience." "Is this cv.json valid?" (paste one)

How it works

  • fetch_cv, validate_cv and get_cvjson_schema run locallyvalidate_cv checks against the always-current canonical schema at cvjson.com.
  • search_open_to_work is served by the hosted cv.json index (it needs the live database of who's open to work). Because the hosted server executes that tool, it also owns its contract: this package asks it for the tool's own definition at startup, so new search facets appear without a package upgrade. The bundled definition is the offline fallback.

Self-host or point at your own deployment:

CVJSON_MCP_ENDPOINT=https://your-host/api/mcp \
CVJSON_SCHEMA_URL=https://your-host/schema/v1.json \
npx -y cvjson-mcp

Requirements

Node.js ≥ 18.

License

MIT · built by FreeCV