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

@finch.app/minitools

v0.1.9

Published

CLI shim for installing Finch mini tools to the correct location.

Readme

@finch.app/minitools

CLI shim for installing Finch mini tools to the correct location.

Usage

# Install from npm
npx @finch.app/minitools add @scope/finch-mini-tool-example

# Install a local mini tool directory
npx @finch.app/minitools add ./my-tool

# Install from a zip file (local or URL)
npx @finch.app/minitools add ./my-tool.zip
npx @finch.app/minitools add https://github.com/user/repo/archive/refs/heads/main.zip

# Install globally (~/.finch/extensions/)
# Default installs go to the personal Finch workspace extension directory.
npx @finch.app/minitools add @finch.app/mcp-client --global

# List installed mini tools (id, version, enabled/disabled, name, path)
npx @finch.app/minitools list
npx @finch.app/minitools list --global

# Remove a mini tool
npx @finch.app/minitools remove mcp-client

# Show install paths
npx @finch.app/minitools where

# Validate a mini tool package
npx @finch.app/minitools doctor ./my-tool

Install locations

| Flag | Path | Scope | |---|---|---| | (default) | <workspace.json#finchHomeDir>/.finch/extensions/<id>/ | Personal Finch workspace | | --global | ~/.finch/extensions/<id>/ | All Finch sessions |

The default workspace path is read from ~/.finch/workspace.json#finchHomeDir. There is no project/--cwd scope for mini tools; use the personal default or --global.

Registry and downloads

Pinned npm specs such as @scope/[email protected] skip npm registry metadata and download directly from https://community.finchwork.app/download/minitool/<package>/<version>. Unpinned specs such as @scope/tool or @scope/tool@latest still use npm registry metadata to resolve the concrete version first; --registry <url> only affects that metadata lookup, not the final package download.

Mini tool package

A Finch mini tool is an npm-style package with package.json#finch:

{
  "name": "my-tool",
  "version": "1.0.0",
  "type": "module",
  "main": "dist/index.js",
  "finch": {
    "manifestVersion": 1,
    "id": "my-tool",
    "name": "My Tool",
    "main": "dist/index.js",
    "activationEvents": ["onStartup"]
  }
}

doctor reports fatal issues and warnings. add / update block packages with fatal validation issues such as a missing package.json#finch, invalid id, unsupported manifestVersion, malformed contribution declarations, or a missing entry file.

Downloads served by https://community.finchwork.app/download/minitool/<package>/<version> are cached under ~/.finch/cache/minitools/ by package and version, so reinstalling or updating the same version avoids another network download.

add installs the mini tool but does not enable or grant permissions. Open Finch → Toolcase → Tools to review permissions and enable it.