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

@revnu/cli

v1.1.0

Published

Command line and MCP server for the revnu API: read your review queue, approve or decline cards, message your growth agent, and pull results from your own software.

Readme

@revnu/cli

Your revnu growth agent from the command line, and as an MCP server for Claude Desktop, Claude Code and Cursor.

revnu is the growth hire for your business. It drafts outreach, writes and publishes content, runs ads and reports what worked, and puts anything that needs your say-so in a review queue. This package lets your own software, or your own AI assistant, read that queue, approve or decline cards, message the agent, and pull results.

Full API reference: https://revnu.com/guides/revnu-api

Install

npm install -g @revnu/cli
revnu auth login          # paste a personal token from revnu.com → settings → API tokens

Or skip the login and set REVNU_API_TOKEN in the environment. Tokens start with rvp_, are shown once when minted, and carry only the scopes you picked (review:read, review:write, agent:message, results:read, leads:read).

As an MCP server

Add to Claude Desktop (claude_desktop_config.json), Claude Code (claude mcp add revnu -- npx -y @revnu/cli mcp), or Cursor:

{
  "mcpServers": {
    "revnu": {
      "command": "npx",
      "args": ["-y", "@revnu/cli", "mcp"],
      "env": { "REVNU_API_TOKEN": "rvp_..." }
    }
  }
}

Tools, one per API route: whoami, review_list, review_get, review_answer, review_send, review_request_changes, review_snooze, review_dismiss, agent_message (posts, then waits for the reply), agent_message_status, agent_thread, agent_status, results_get, workflows_list, workflow_runs, leads_list, lead_get.

Writes are real: review_answer on a blog draft publishes it, review_send sends email from your mailbox. Mint a read-only token if your assistant should only look.

As a CLI

revnu whoami
revnu review list
revnu review approve <id>
revnu review request-changes <id> --text "Shorter, and lead with the case study."
revnu agent message "What did we ship this week?" --wait 90
revnu results --since 2026-09-01
revnu leads list --status replied

Every whoami, review, agent, results, workflows and leads command prints JSON to stdout, so | jq works; help, version and auth login print text, and revnu mcp speaks JSON-RPC. Exit codes: 0 ok, 1 the API said no, 2 usage.

Configuration

| Variable | Meaning | |---|---| | REVNU_API_TOKEN | personal token, overrides the saved config | | REVNU_API_BASE | API base, default https://revnu.com/api/v1 | | XDG_CONFIG_HOME | where revnu/config.json lives, default ~/.config |

The saved config file is mode 600 and holds the token in plain text. revnu auth logout deletes it.