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

tirekick

v0.2.0

Published

Kick the tires on MCP servers: schema validation, strict-regex lint, and quality checks before you ship or install.

Downloads

634

Readme

tirekick

Kick the tires on an MCP server before you ship or install it.

An invalid tool schema doesn't fail quietly: strict API-side validation rejects the entire tools array, and every request in the client session fails until the schema is unloaded. This project exists because our own analytics MCP server shipped exactly that bug (an unescaped [ inside a regex character class — valid ECMA, rejected by stricter engines) and bricked Claude Code sessions for weeks before anyone connected the dots.

The hosted checker and a graded directory of the public MCP registry live at tirekick.dev.

Usage

npx tirekick https://your-server.example/mcp
npx tirekick your-mcp-package
npx tirekick ./tools.json

(tirekick check <target> is the same command, spelled out.)

Options

  • --json — machine-readable report
  • --env KEY=VALUE — environment for npm-package servers that need credentials to boot
  • --header "Name: value" — request headers for auth-gated remote servers (repeatable); credentials go directly from your machine to the server under test

What it checks

Findings carry a severity (error / warn / info) and a category (interop / ergonomics / safety); the report grades each category and overall, A through F:

  • Every input/output schema validates against JSON Schema draft 2020-12 (the bar Claude's API applies) — error
  • Regex patterns are safe for strict RE2-style engines: no lookaround, no backreferences, no unescaped [ inside character classes — error
  • Input schema roots are type: "object" — error
  • Tool descriptions exist and are substantial enough for reliable tool selection — warn under 20 chars, info under 40

Grading dedupes findings to distinct (tool, rule) pairs: any error caps a category at D, errors touching ≥25% of tools grade F, and info findings never move the grade. The full rubric: tirekick.dev/about.

CI

The exit code is the contract: 0 clean or warnings only, 1 errors found, 2 could not check. npx tirekick <url-or-package> in a workflow fails the build when a strict client would reject your server.