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

curato

v0.1.5

Published

Dev environment manager for Claude Code — scans, diagnoses, repairs, and standardizes your MCP servers, plugins, and project setup.

Readme

Curato

Install once. Everything works.

Curato is a dev environment manager for Claude Code. It scans, diagnoses, repairs, and standardizes your MCP servers, plugins, and project setup — so you can stop debugging your tools and start using them.

The Problem

MCP servers break. Node versions mismatch. VS Code and CLI have separate registries that don't sync. Plugins need manual cache clearing. Every developer on your team has a different Claude Code setup. There's no package.json for your Claude Code environment — until now.

Quick Start

Prerequisites: Node.js >= 18, Claude Code installed

npx curato install

That's it. Curato builds the MCP server, registers the plugin, resolves your Node path, and connects to Claude Code.

Then open Claude Code (VS Code or CLI) and run:

/doctor

Curato scans your environment, reports issues, and offers to fix them.

git clone [email protected]:lastboy/curato.git
cd curato
node scripts/install.js

Who is this for?

  • Solo devs — run /doctor when Claude Code acts up. Curato finds and fixes the problem.
  • Team leads — commit a curato-setup.json to your repo. Every developer gets the same MCP servers, plugins, and CLAUDE.md on first setup.
  • Platform / DevOps engineers — maintain a company-wide config. Teams inherit and extend it. One command applies the standard.

Commands

Environment Health

| Command | What it does | |---------|-------------| | /doctor | Full health check — scans Node, plugins, MCP servers, project setup. Offers to repair. | | /scan | Read-only status snapshot. No changes, no prompts. | | /repair | Interactive repair for broken setups. | | /smoke-test | 7-step validation suite. |

Team Setup

| Command | What it does | |---------|-------------| | /setup-team | Apply your team's curato-setup.json — installs MCP servers, plugins, CLAUDE.md content. | | /bootstrap-project | Scaffold .claude/, CLAUDE.md, and settings.local.json in a new project. |

MCP & Plugin Management

| Command | What it does | |---------|-------------| | /remove-mcp | Remove an MCP server from all registries (VS Code + CLI). | | /remove-plugin | Uninstall a plugin and clear its cache. | | /clear-cache | Clean plugin cache — one plugin, one marketplace, or everything. | | /uninstall | Full teardown — removes Curato and everything it installed. |

Built-in Connectors

Each connector handles the full install, registration, and verification cycle for a specific MCP server.

| Command | What it does | |---------|-------------| | /setup-chrome-devtools | Install and configure chrome-devtools-mcp. | | /connect-chrome | Launch Chrome in debug mode and connect Claude. | | /connect-azure | Register Azure DevOps MCP with proper auth in both registries. |

Team Setup

Create a curato-setup.json in your project root:

{
  "version": 1,
  "mcpServers": {
    "your-mcp": {
      "command": "npx",
      "args": ["-y", "your-mcp-server"],
      "scope": "project",
      "enabled": true
    }
  },
  "plugins": [
    {
      "name": "superpowers",
      "enabled": false
    }
  ],
  "claudeMd": {
    "project": {
      "mode": "create-if-missing",
      "content": "# My Project\n\nProject standards here."
    }
  }
}

Then run /setup-team in Claude Code. Every developer on the team runs the same command and gets the same environment.

See curato-setup.json for the full schema with all options.

Architecture

plugin/       → Claude Code plugin (13 commands, 3 agents, 3 skills)
mcp-server/   → TypeScript MCP server (21 tools)
scripts/      → Standalone scripts (no Claude Code dependency)

The MCP server does the real work. The plugin provides the conversational UX. The scripts let you install and diagnose without Claude Code running.

Key Guarantees

  1. Never deletes existing config — all merges use target-wins semantics
  2. Backup before every write — timestamped copies in ~/.curato-backups/
  3. Dry-run is always explicit — mutation tools require dryRun: boolean
  4. Tests never touch ~/.claude — all tests use temp directories

Development

cd mcp-server
npm install
npm run build
npm run test          # 128 tests
npm run test:unit     # scanner + patcher + tool tests
npm run test:integration  # server roundtrip + regression

Documentation

Platform Support

  • macOS / Linux — fully supported
  • Windows — planned (roadmap)

Contributing

Issues and pull requests welcome. See the architecture docs to understand how things fit together.

License

MIT