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

@godpowers/mcp

v3.14.0

Published

Read-only MCP server for Godpowers runtime status, routing, gates, artifact linting, and requirement tracing.

Readme

@godpowers/mcp

  • [DECISION] @godpowers/mcp is the first-party read-only MCP companion package for Godpowers.
  • [DECISION] The main godpowers package stays dependency-free at runtime, and the MCP SDK dependency lives only in this companion package.
  • [DECISION] Version 3.14.0 exposes eight read-only tools: status, next, gate_check, lint_artifact, trace_requirement, work_report, route, and verification_history.
  • [DECISION] Mutation tools are intentionally absent through the 3.14.0 release.

Install

npm install -g godpowers @godpowers/mcp

Run

godpowers-mcp serve --project=.

Codex Setup

godpowers-mcp setup --host=codex --project=.
godpowers-mcp setup --host=codex --project=. --write
  • [DECISION] The first command prints a registration plan without writing files.
  • [DECISION] The second command writes a managed [mcp_servers.godpowers] block to ~/.codex/config.toml.
  • [DECISION] No automatic host registration runs during package install.

Tool Boundary

  • [DECISION] status wraps lib/dashboard.js and returns rendered dashboard text plus structured status.
  • [DECISION] next wraps lib/dashboard.js and returns the recommended next command from disk state.
  • [DECISION] gate_check wraps lib/gate.js and returns the executable tier gate verdict.
  • [DECISION] lint_artifact wraps lib/artifact-linter.js for one file inside the project root.
  • [DECISION] trace_requirement wraps lib/requirements.js and returns requirement, roadmap, linkage, and ledger evidence.
  • [DECISION] work_report wraps lib/work-report.js and returns the verification play-by-play (read-only; never advances the report cursor).
  • [DECISION] route wraps lib/quarterback.js and classifies a prompt into an entry play without mutating state.
  • [DECISION] verification_history wraps lib/evidence.js and returns ledger records, optionally filtered to one substep.