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

refresh-cv

v0.1.9

Published

Install refresh.cv MCP connections for supported agent clients.

Readme

refresh-cv

Install the refresh.cv MCP server for supported agent clients.

Codex

npx -y refresh-cv@latest --client codex

This configures Codex with:

https://mcp.refresh.cv/mcp

Then it starts the Codex OAuth login flow.

OpenCode

npx -y refresh-cv@latest --client opencode

This writes the remote MCP server to OpenCode config and starts:

opencode mcp auth refresh.cv

OpenCode uses http://127.0.0.1:19876/mcp/oauth/callback during OAuth login. If the browser reaches that URL but OpenCode does not finish connecting, another local process may already be using port 19876:

lsof -nP -iTCP:19876 -sTCP:LISTEN

Free that port, then rerun:

opencode mcp auth refresh.cv

If you prefer a shorter server name:

npx -y refresh-cv@latest --client opencode --name refresh
opencode mcp auth refresh

Claude Code

This package also contains the refresh.cv Claude Code plugin. Install it through the public refresh.cv marketplace:

/plugin marketplace add https://mcp.refresh.cv/claude/marketplace.json
/plugin install refresh@refresh-cv
/mcp

Then authorize refresh.cv from /mcp.

The plugin also provides a login helper command:

/refresh:login

OpenClaw

MCP-only install:

npx -y refresh-cv@latest --client openclaw

Plugin marketplace install from GitHub:

openclaw plugins install refresh-cv --marketplace refresh-dev/claude-plugin

The npm-style command below will only work after an npm package named @refresh-dev/claude-plugin is published:

openclaw plugins install @refresh-dev/claude-plugin

The installer pins OpenClaw's OAuth callback to:

http://127.0.0.1:8989/oauth/callback

After browser approval, OpenClaw should save the credentials and probe the MCP server automatically. If login does not complete, rerun:

openclaw mcp login refresh.cv
openclaw mcp probe refresh.cv

Hermes

MCP-only install:

npx -y refresh-cv@latest --client hermes

Equivalent manual commands:

hermes mcp add refresh.cv --url https://mcp.refresh.cv/mcp --auth oauth
hermes mcp login refresh.cv
hermes mcp test refresh.cv

Local server

npx -y refresh-cv@latest --client codex --local

This configures Codex with:

http://localhost:8010/mcp

The default local server name is refresh_cv_local, so production and local MCP connections can coexist.

Options

  • --client codex: configure Codex.
  • --client openclaw: configure OpenClaw with openclaw mcp add, then run OAuth.
  • --client opencode: configure OpenCode JSONC config, then run opencode mcp auth.
  • --client hermes: configure Hermes with hermes mcp add, then run OAuth.
  • --url <url>: override the MCP endpoint.
  • --local: configure http://localhost:8010/mcp as refresh_cv_local.
  • --name <name>: override the MCP server name. Codex defaults to refresh_cv; OpenClaw/OpenCode/Hermes default to refresh.cv; local mode defaults to refresh_cv_local.
  • --force: replace an existing supported config entry where possible.
  • --skip-login: add the MCP server but skip OAuth login.