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

zenith-ops

v0.1.3

Published

Zenith Ops local agent CLI: OAuth login, onboarding guidance, and MCP stdio bridge for local LLM clients.

Readme

zenith-ops

Local Zenith Ops agent CLI for OAuth login, guided onboarding, and seamless MCP connection to local LLM clients.

npx zenith-ops

The package exposes two binaries:

  • zenith
  • zenith-ops

Core commands

zenith login
zenith
zenith projects
zenith projects --select
zenith create
zenith dashboard --project my-project
zenith login --project my-project
zenith status --profile my-project
zenith connect mcp --profile my-project --client codex
zenith connect mcp --profile my-project --client claude-desktop
zenith mcp serve --profile my-project
zenith logout --profile my-project

Security model

  • Uses Zenith Core's OAuth 2.1 + PKCE flow for both account CLI access (/cli) and project MCP access (/mcp/{slug}).
  • Keeps account dashboard tokens (scope=cli, project_id=NULL) separate from project MCP tokens (mcp_*, project-scoped).
  • Stores token material in the OS keychain on macOS.
  • Falls back to ~/.zenith-ops-agent/secrets.json with 0600 permissions when no supported keychain is available.
  • Writes MCP client configs with a command bridge only; tokens are never written into Claude/Codex config files.
  • Defaults to mcp_read. operator and admin scopes are opt-in.

Account dashboard

After account login:

zenith login
zenith projects
zenith create
zenith dashboard --project my-project

The dashboard shows the current runtime state, connected resource counts, next actions, and MCP connection hints.

MCP bridge

MCP clients run:

zenith mcp serve --profile my-project

The bridge speaks stdio MCP locally and forwards JSON-RPC calls to:

https://zenith-ops-api.harmonycvm.com/mcp/my-project

with the current OAuth bearer token.

Global zenith command

npx zenith-ops runs from the npx cache, so the zenith binary is not on your PATH afterwards. On first run the CLI offers to install itself globally (npm install -g zenith-ops) — accept it and every hint like zenith login works from any shell. If you skip it, every command also works in npx form: npx zenith-ops login, npx zenith-ops connect mcp .... MCP client configs written without a global install use the npx -y zenith-ops mcp serve ... bridge automatically, so Codex / Claude Desktop keep working either way.

Interactive shell (0.1.3)

With an account login, bare zenith drops into a codex/claude-style shell:

$ zenith
zenith-ops 0.1.3 — interactive shell
Projects
  orderhop-cs   live   owner
  ...
zenith> list
zenith> connect mcp --project orderhop-cs --client codex
zenith> status --project orderhop-cs
zenith> exit

connect mcp --project <slug> runs the project OAuth automatically when no profile exists yet, so login → connect is a single command.