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-scanner

v1.0.0

Published

Scan your project and get recommended MCP servers with ready-to-paste config

Readme

MCP Scanner

Stop guessing which MCP servers you need. Let your project tell you.

  __  __  ___ ___   ___
 |  \/  |/ __| _ \ / __|  ___ __ _ _ _  _ _  ___ _ _
 | |\/| | (__|  _/ \__ \ / _/ _` | ' \| ' \/ -_) '_|
 |_|  |_|\___|_|   |___/ \__\__,_|_||_|_||_\___|_|

Scan any project directory, detect the tech stack, and get recommended Model Context Protocol servers with ready-to-paste configuration for Claude Desktop and Claude Code.


Quick Start

npx mcp-scanner

Or scan a specific directory:

npx mcp-scanner /path/to/my/project

Auto-write configs to your system:

npx mcp-scanner --apply

How It Works

  1. Scan - Analyzes your project files (package.json, requirements.txt, Dockerfile, tsconfig.json, prisma/, .github/, .env, and more)
  2. Detect - Identifies your tech stack: frameworks, databases, cloud providers, tools
  3. Recommend - Maps each technology to the best MCP servers from the ecosystem
  4. Configure - Generates ready-to-paste JSON configs for Claude Desktop and Claude Code

Supported Technologies

| Category | Technologies | |----------|-------------| | Languages | Node.js, TypeScript, Python, Rust, Go | | Frontend | React, Next.js, Vue.js, Angular, Svelte | | Backend | Express, Fastify, FastAPI, Django, Flask | | Databases | PostgreSQL, MongoDB, Redis, SQLite | | ORM | Prisma | | Cloud | AWS, Vercel, Supabase, Firebase | | DevOps | Docker, GitHub Actions, Sentry | | Tools | ESLint, Puppeteer, Playwright, Stripe, Slack |

MCP Servers Recommended

| Server | For | |--------|-----| | @modelcontextprotocol/server-github | Git repos, PRs, issues | | @modelcontextprotocol/server-filesystem | File operations | | @modelcontextprotocol/server-postgres | PostgreSQL queries | | @modelcontextprotocol/server-sqlite | SQLite queries | | @modelcontextprotocol/server-memory | Persistent memory | | @modelcontextprotocol/server-fetch | HTTP requests | | @anthropic/mcp-puppeteer | Browser automation | | @anthropic/mcp-slack | Slack integration | | mcp-docker | Container management | | mcp-mongo-server | MongoDB queries | | mcp-redis | Redis cache | | mcp-vercel | Vercel deployments | | mcp-supabase | Supabase backend | | mcp-aws | AWS services | | mcp-prisma | Prisma ORM | | mcp-stripe | Stripe payments | | mcp-eslint | Code linting | | mcp-playwright | Browser testing |

CLI Options

Usage: mcp-scanner [options] [directory]

Arguments:
  directory      Project directory to scan (default: current directory)

Options:
  --apply        Write configs to Claude Desktop and Claude Code settings
  --json         Output raw JSON instead of formatted display
  -V, --version  Output the version number
  -h, --help     Display help

JSON Output

For programmatic use, get raw JSON:

npx mcp-scanner --json

Returns:

{
  "stack": [...],
  "recommendations": [...],
  "desktopConfig": { "mcpServers": { ... } },
  "codeConfig": { "mcpServers": { ... } }
}

Install Globally (Optional)

npm install -g mcp-scanner
mcp-scanner

Contributing

  1. Fork the repo
  2. Add new technology detectors in src/scanner.js
  3. Add corresponding MCP server mappings in src/recommender.js
  4. Run tests: npm test
  5. Submit a PR

License

MIT


Built with Claude Code