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

lazy-cherry-pick-mcp

v0.17.0

Published

MCP server for Lazy Cherry Pick: AI tools for git status, branches, commits, diffs, cherry-pick, fetch/pull/push, and conflict resolution. Run via npx, no desktop install needed.

Readme

lazy-cherry-pick-mcp

A Model Context Protocol server exposing 22 git tools (status, branches, commits, diffs, cherry-pick, fetch/pull/push, conflict resolution) so AI clients — Claude Desktop, Cursor, VS Code, etc. — can drive real git workflows on a repo on your machine, including an AI-driven conflict-resolution loop.

This package is a thin launcher: on first run it downloads the matching sidecar binary from the project's GitHub Releases, caches it locally, and execs it with --mcp. No Tauri / desktop app install required.

Platform support: Windows x64 only for now. Other platforms exit with an error pointing to build-from-source instructions.

Usage

Add to your MCP client config (e.g. Claude Desktop's claude_desktop_config.json):

{
  "mcpServers": {
    "lazy-cherry-pick": {
      "command": "npx",
      "args": ["-y", "lazy-cherry-pick-mcp"],
      "env": {
        "LCP_DEFAULT_REPO": "D:\\path\\to\\your\\repo"
      }
    }
  }
}
  • LCP_DEFAULT_REPO is optional. Without it, the model must pass an absolute repo path on every tool call.
  • The first call may take a few seconds while the sidecar binary downloads; it is cached afterwards (per-version) under %LOCALAPPDATA%\lazy-cherry-pick-mcp\.

Integrity

Each release of this package pins the SHA256 checksum of the matching sidecar binary (sidecarSha256 in package.json, computed by CI from the exact binary uploaded to the GitHub Release). On first run, cli.js hashes the downloaded binary and refuses to cache or execute it if the checksum doesn't match.

Tool catalog & conflict-resolution loop

See docs/MCP.md in the main repo for the full 22-tool catalog, the AI-driven conflict-resolution loop, and protocol details.

Troubleshooting

  • 404 downloading the sidecar binary right after a new version is published: the corresponding GitHub Release may still be a draft. Wait for it to be published, or use the previous version pinned (npx lazy-cherry-pick-mcp@<previous-version>).
  • Unsupported platform error: only Windows x64 has a prebuilt binary today. Build the sidecar from source (see the main repo README) and point your MCP client's command directly at the resulting .exe with args: ["--mcp"].