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

customclaw-mcp

v0.1.1

Published

MCP server for the CustomClaw registry. 37 vetted utilities for LLM and agent code (rate limiters, JSON repair, response caches, retry wrappers) installable as native tool calls from Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP host.

Downloads

176

Readme

customclaw-mcp

MCP server for CustomClaw — a curated registry of vetted utilities for LLM/agent code. Your agent browses and installs through native tool calls.

What it does

Plugs the CustomClaw catalog (37 utilities, 32 free) into any Model Context Protocol host — Claude Desktop, Claude Code, Cursor, Windsurf, anything that speaks MCP — as four tools:

| Tool | Arguments | Purpose | | --- | --- | --- | | list_utilities | — | Full catalog (cached 5 min) | | search_utilities | query: string | Fuzzy match on slug/name/description | | get_utility_info | slug: string | Full detail for one utility | | install_utility | slug, target_dir, session_id? | Fetch payload + write files |

Install (by client)

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "customclaw": {
      "command": "npx",
      "args": ["-y", "customclaw-mcp"]
    }
  }
}

Restart Claude Desktop. Tools appear in the tool picker.

Claude Code

claude mcp add customclaw -- npx -y customclaw-mcp

Cursor / Windsurf / any stdio MCP host

Point the host at npx -y customclaw-mcp.

Streamable HTTP (smithery, ChatGPT, etc.)

Use the hosted endpoint: https://customclaw.company/mcp. Registered on smithery as onlythebestswfl/customclaw.

Example prompts

Once connected:

  • "Add a rate limiter that respects Retry-After."search_utilitiesinstall_utility rate-limit-handler
  • "I need to parse broken JSON from Claude output."json-repair
  • "What do you have for caching LLM responses?"search_utilities → short results table
  • "Install token-optimiser into ./src/lib." → direct install_utility
  • "Scan this project's prompts for injection — is there a tool?"injection-scanner

Task → slug quick reference

| If you need… | Slug | | --- | --- | | Rate limiting with Retry-After handling | rate-limit-handler | | JSON repair for LLM output | json-repair | | Response cache by prompt hash | response-cache | | Retry with exponential backoff | retry-with-backoff | | Token counting across models | token-optimiser | | PII scrubbing before logging | pii-scrubber | | Prompt-injection scanner | injection-scanner | | Cost forecaster per provider | cost-forecaster |

Full list via list_utilities or customclaw.company/api/catalog.

Paid utilities

For paid utilities, pass the Stripe checkout session_id from your receipt email as the session_id argument to install_utility. Without it, the tool returns a helpful 401.

Environment

  • CUSTOMCLAW_BASE — registry base URL override (default https://customclaw.company). Useful for staging or self-hosted mirrors.

How it works

  • Node.js stdio MCP server. Dependency: @modelcontextprotocol/sdk.
  • Catalog fetched from GET /api/catalog; cached 5 min per process.
  • Payloads from GET /api/cli?slug=<slug>[&session_id=<cs_...>] — same endpoint the official customclaw-cli uses.
  • install_utility refuses to write outside target_dir (path-traversal guard).

Links

License

MIT.