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

@genius-revius/mcp

v0.1.0

Published

MCP server (stdio) for [Revius](../../README.md) -- exposes review session data, findings, generated artifacts, and review packs to Claude Code and other MCP-compatible clients.

Readme

@genius-revius/mcp

MCP server (stdio) for Revius -- exposes review session data, findings, generated artifacts, and review packs to Claude Code and other MCP-compatible clients.

Install

npm install -g @genius-revius/mcp

Usage

Register the server with your MCP client (stdio transport), pointing it at a repo that has Revius initialized (a .revius/ directory with a SQLite database):

{
  "mcpServers": {
    "revius": {
      "command": "revius-mcp",
      "args": ["--revius-dir", "/path/to/project/.revius"]
    }
  }
}

--revius-dir defaults to .revius (resolved from the process cwd) and can also be set via the REVIUS_DIR environment variable.

Tools

| Tool | Description | |------|-------------| | revius_sessions | List recent review sessions with observation counts | | revius_findings | Get findings (observations) from a session, filterable by severity | | revius_tasks | Get generated tasks.md content from a session | | revius_prompts | Get generated prompts.md content from a session | | revius_summary | Get observation counts and severity breakdown across all sessions | | revius_pack_list | List available review packs | | revius_pack_apply | Apply a review pack to a session and return the findings report |

See the main README for full documentation.

MCP protocol version

This server is built on @modelcontextprotocol/sdk and negotiates the stable 2025-11-25 MCP specification (the SDK falls back to older revisions — down to 2024-11-05 — for clients that request them). The SDK owns the JSON-RPC lifecycle, so notifications/initialized and other notifications are correctly ignored instead of being answered with an error.

RC 2026-07-28 policy

The 2026-07-28 Release Candidate (frozen 2026-05-21, final 2026-07-28) introduces a stateless core, an Extensions framework, and full JSON Schema 2020-12. We deliberately target the stable 2025-11-25 spec, not the RC, because:

  • Stable 2025-11-25 is normative and supported today; the RC can still shift until 28/07.
  • RC clients stay backward-compatible with a 2025-11-25 server (they fall back to the initialize handshake), so there is no urgency to adopt the stateless core.
  • This server runs over stdio — the RC's remote/auth/load-balancer changes do not apply.

RC conformance (stateless core, server/discover, load-balancer headers) is deferred until after 2026-07-28 and will be re-evaluated only if Revius is ever exposed over Streamable HTTP. The SDK dependency is bounded <2 (^1.29.0) to avoid an accidental jump to the SDK v2 line before that review. See decisions/MCP-SPEC-REFERENCE-2026-07.md for the full rationale.