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

mcp-stack

v0.1.5

Published

MCP Stack Manager for Claude Code - manage MCP server configurations with stack templates

Readme

mcp-stack

A CLI tool for managing MCP (Model Context Protocol) server configurations in Claude Code. Define reusable stack templates and quickly configure MCPs for your projects.

Features

  • Stack Templates - Pre-configured MCP bundles for common workflows (SaaS, automation, AI apps)
  • Interactive Setup - Guided credential prompts with hints for where to find each value
  • Health Checks - Validate MCP configurations and test connections
  • Simple CLI - Add, remove, and manage MCPs with intuitive commands

Installation

npm install -g mcp-stack

Quick Start

# Initialize with a stack template
mcp-stack init saas-ts

# Or interactively select MCPs
mcp-stack init

# Add individual MCPs
mcp-stack add github
mcp-stack add supabase vercel

# Check configuration health
mcp-stack doctor

Commands

init [stack]

Initialize MCP configuration with a stack template.

mcp-stack init              # Interactive stack selection
mcp-stack init saas-ts      # Use specific stack
mcp-stack init --detect     # Auto-detect project type
mcp-stack init --force      # Overwrite existing config

add [mcp...]

Add MCP(s) to the configuration.

mcp-stack add               # Interactive MCP selection
mcp-stack add github        # Add single MCP
mcp-stack add github vercel # Add multiple MCPs
mcp-stack add --force       # Overwrite if already configured

remove [mcp]

Remove MCP(s) from the configuration.

mcp-stack remove            # Interactive removal
mcp-stack remove github     # Remove specific MCP
mcp-stack remove --all      # Remove all MCPs
mcp-stack remove --stack saas-ts  # Remove all MCPs from a stack

list [type]

List available stacks, MCPs, or configured MCPs.

mcp-stack list              # List everything
mcp-stack list stacks       # List stack templates
mcp-stack list mcps         # List all available MCPs
mcp-stack list configured   # List MCPs in current project

stacks

Interactive stack browser - select a stack to view its MCPs.

mcp-stack stacks

doctor

Check MCP configurations and validate connections.

mcp-stack doctor

update

Check for new versions of mcp-stack.

mcp-stack update

Available Stacks

| Stack | Description | MCPs | |-------|-------------|------| | fullstack | Full-stack development | supabase, vercel, github, context7, playwright | | saas-ts | SaaS stack for TypeScript projects | supabase, vercel, github | | automation | Browser automation stack | playwright, puppeteer, chrome-devtools | | ai-builder | AI builder stack | context7, supabase, vercel |

Available MCPs

| MCP | Description | Credentials | |-----|-------------|-------------| | github | GitHub repository operations | GITHUB_TOKEN | | supabase | Supabase database and auth | SUPABASE_PROJECT_REF, SUPABASE_ACCESS_TOKEN | | vercel | Vercel deployments | Browser auth | | context7 | Documentation and context lookup | Browser auth (API key optional) | | playwright | Browser automation with Playwright | None | | puppeteer | Browser automation with Puppeteer | None | | chrome-devtools | Chrome DevTools Protocol | None |

Configuration

mcp-stack creates a .mcp.json file in your project root. This file is automatically read by Claude Code.

Warning: Add .mcp.json to your .gitignore!

The .mcp.json file may contain API keys and credentials. Never commit it to version control.

echo ".mcp.json" >> .gitignore

Example .mcp.json:

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_xxxxxxxxxxxx"
      }
    },
    "context7": {
      "type": "http",
      "url": "https://mcp.context7.com/mcp"
    }
  }
}

Verifying Setup

After configuration, verify your MCPs are working:

  1. In Claude Code CLI: Run claude mcp list
  2. In Claude Code IDE: Type /mcp to see MCP status
  3. With mcp-stack: Run mcp-stack doctor

Beta Features

These features are experimental and may change in future versions.

detect

Auto-detect project type and suggest MCPs based on your codebase.

mcp-stack detect

Also available as:

mcp-stack init --detect

Contributing

Contributions are welcome! Feel free to:

  • Add new MCP definitions
  • Create new stack templates
  • Improve detection rules
  • Fix bugs or improve documentation

License

MIT