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

@savvy-web/mcp

v1.8.1

Published

The savvy MCP server — Silk Suite tooling and library knowledge for coding agents

Downloads

7,034

Readme

@savvy-web/mcp

npm License: MIT

The savvy-mcp Model Context Protocol server. It serves Silk Suite tooling to coding agents as structured tools, so an agent can read workspace facts and run Silk checks instead of parsing console output or guessing. It is a tools-only server — ten tools, no resources.

Install

npm install --save-dev @savvy-web/mcp
# or
pnpm add -D @savvy-web/mcp

The Silk Suite Claude Code plugins spawn this server for you, so you rarely install it directly. Installing @savvy-web/silk also brings it in.

Quick start

The server speaks MCP over stdio and is meant to be spawned by an MCP client. A client declares it like this:

{
  "mcpServers": {
    "savvy-mcp": {
      "command": "savvy-mcp",
      "args": ["."]
    }
  }
}

The single positional argument is the project directory; if omitted, the server resolves it from SAVVY_MCP_PROJECT_DIR, then CLAUDE_PROJECT_DIR, then the current working directory.

To exercise it by hand during development, run it through the MCP inspector:

npx @modelcontextprotocol/inspector savvy-mcp .
# opens the inspector UI against a live savvy-mcp instance

Tools

  • workspace_info — returns a flat, structured projection of the workspace analysis: linked and fixed package groups as name arrays plus resolved registry targets. Backed by the same silk-effects analyzer the savvy CLI uses.
  • turbo_inspect — read-only Turborepo inspection over turbo --dry: diagnose a task's per-package cache hits, derive the task graph or list the packages affected by recent changes. It never runs a task. Backed by the same silk-effects Turbo inspector an agent would otherwise drive by hand.
  • changeset_inspect — read-only changeset analysis for release work: mode=branch diffs the current branch against its base and attributes every changed file to its owning package, mode=config surfaces the resolved .changeset/config.json with its release surfaces, version files and ignore list, and mode=classify reports how the branch's pending changesets classify each package's bump. It never writes a changeset. Backed by the same silk-effects changeset services the savvy CLI uses.
  • changeset_validate — read-only validation of the files in a changeset directory against the section-aware rules, returning typed diagnostics (file, rule, line, column, message) plus an ok flag and error count. Use it instead of shelling out to savvy changeset lint.
  • changeset_preview — read-only preview of the next release: it runs the genuine changesets engine over the pending changesets and returns each package's version bump (old to new) plus the rendered CHANGELOG block, exactly as it would ship. It never mutates the repo. Backed by the same silk-effects release planner the savvy changeset version command applies.
  • changeset_deps_detect — read-only preview of the cumulative dependency diff (merge-base to working tree): one entry per affected workspace package with its resolved dependency-table rows, catalog:/workspace: specifiers resolved to concrete versions. It never writes a changeset. Backed by silk-effects' Changesets.DepsRegen.plan.
  • changeset_deps_regen — regenerates pure-dependency changesets: deletes stale ones and writes fresh single-package, patch-bump changesets from the cumulative dependency diff. Mutating unless dryRun is set, in which case it reports what it would delete and write without touching the filesystem. Backed by silk-effects' Changesets.DepsRegen.
  • biome_check — run Biome over a path and get structured diagnostics back: mode=check (lint, format and organize-imports) or mode=lint. Unlike most of the other tools it can mutate — pass write for safe fixes or unsafe for unsafe ones (both git-reversible) — so it returns the same diagnostics the Biome LSP surfaces for files you have edited.
  • repos_inspect — read-only inspection of vendored repositories: mode=status reports per-repo presence, the gitlink commit, working-tree dirtiness, and stale note ids; mode=config surfaces the validated .repos/config.json manifest and its entries. Returns markdown-escaped output since vendored-repo content is untrusted input. Backed by the same silk-effects Repos services the savvy CLI uses.
  • repos_manage — manages vendored repositories (mutating counterpart to repos_inspect): action=sync initializes any missing submodules (git submodule update --init --depth 1), applies sparse-checkout from the manifest, and clears stale git locks; action=pin fetches and checks out the new ref, staging the updated gitlink and manifest; action=add adds a new repo entry; action=note appends a short note to a repo. Pin and add stage git changes for the caller to commit. Backed by the same silk-effects Repos services the savvy CLI uses.

License

MIT