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

@vitus-labs/tools-mcp

v1.15.0

Published

MCP (Model Context Protocol) server for AI assistants to scaffold, configure, and diagnose @vitus-labs/tools projects.

Readme

@vitus-labs/tools-mcp

MCP (Model Context Protocol) server for AI assistants to scaffold, configure, and diagnose @vitus-labs/tools projects.

Exposes 3 tools and 12 documentation resources over stdio transport, enabling Claude, Cursor, Copilot, and other MCP-compatible AI assistants to work with @vitus-labs/tools out of the box.

Installation

bun add -d @vitus-labs/tools-mcp

Usage

As a CLI (stdio transport)

npx vl_mcp

With Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "vitus-labs-tools": {
      "command": "npx",
      "args": ["vl_mcp"]
    }
  }
}

With Claude Code

Add to your project's .mcp.json:

{
  "mcpServers": {
    "vitus-labs-tools": {
      "command": "npx",
      "args": ["vl_mcp"]
    }
  }
}

Programmatic

import { createServer } from '@vitus-labs/tools-mcp'
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'

const server = createServer()
const transport = new StdioServerTransport()
await server.connect(transport)

Tools

scaffold_package

Scaffold a new project pre-configured with @vitus-labs/tools.

| Parameter | Type | Description | |---|---|---| | name | string | Package name (e.g. @my-org/my-lib) | | directory | string | Absolute path to create the project in | | preset | library | nextjs | storybook | Project type |

Presets:

  • library — rolldown build, vitest, typescript, biome lint
  • nextjs — Next.js app with @vitus-labs/tools-nextjs integration
  • storybook — Storybook setup with @vitus-labs/tools-storybook

add_tooling

Add @vitus-labs/tools packages to an existing project. Merges dependencies, scripts, and config files into the existing package.json.

| Parameter | Type | Description | |---|---|---| | directory | string | Absolute path to project root (must contain package.json) | | tools | string[] | Tools to add: typescript, lint, vitest, rolldown, rollup, nextjs, nextjs-images, storybook, favicon, atlas |

diagnose_config

Analyze a project for @vitus-labs/tools configuration issues.

| Parameter | Type | Description | |---|---|---| | directory | string | Absolute path to the project root to diagnose |

Checks:

| Check | Severity | Description | |---|---|---| | Missing package.json | error | No package.json found | | Invalid JSON | error | package.json is not valid JSON | | Missing ESM | warning | Missing "type": "module" | | Missing tsconfig | warning | No tsconfig.json or non-standard extends | | Missing Biome | warning | No biome.json (detects legacy ESLint) | | Missing vl-tools.config | info | No vl-tools.config.mjs | | Missing exports.types | warning | exports["."].types not set | | Missing .js extensions | error | Relative imports without .js extension | | Missing dependencies | error | Scripts reference tools not in dependencies |

Resources

| URI | Description | |---|---| | docs://vitus-labs/overview | Overview of all packages with quick start | | docs://vitus-labs/packages/{name} | Per-package documentation (core, rolldown, rollup, typescript, lint, vitest, nextjs, nextjs-images, storybook, favicon, atlas) |

License

MIT