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

deal-intel-mcp

v0.2.3

Published

Dependency-inclusive bootstrapper for the deal-intel-mcp Python MCP server.

Readme

deal-intel-mcp Bootstrapper

This is the published npx front door for Deal Intelligence MCP.

Current status: [email protected] is the npm front door. It installs the Python package from PyPI by default and places a matching local MCPB file under ~/.deal-intel/runtime/mcpb/. The bootstrapper removes the need for a git clone or editable install, but it does not bundle Node.js or Python itself.

The Node package must not reimplement the MCP server. It installs, finds, and runs the Python package described by docs/bootstrapper-contract.md.

Commands

node bin/deal-intel-mcp.js where
node bin/deal-intel-mcp.js doctor
node bin/deal-intel-mcp.js smoke
node bin/deal-intel-mcp.js mcp
node bin/deal-intel-mcp.js mcp-config
node bin/deal-intel-mcp.js mcpb
node bin/deal-intel-mcp.js setup

setup --dry-run prints the install plan without changing files. Running setup without --dry-run creates ~/.deal-intel/runtime/venv, installs the selected Python package source, copies the bundled MCPB file to ~/.deal-intel/runtime/mcpb/, and runs smoke-profile --profile sample as a post-install check.

setup intentionally does not fail just because MongoDB or API keys are not configured yet. After the user enters real config values, run:

node bin/deal-intel-mcp.js doctor --live

mcpb prints the local MCPB file path and the Python interpreter path to paste into the Claude Desktop MCPB form. mcp-config prints the same MCPB handoff plus a copy-paste Claude Desktop JSON snippet for users who configure MCP manually.

For local development without the managed runtime, point the wrapper at an existing Python environment:

DEAL_INTEL_PYTHON=/path/to/python node bin/deal-intel-mcp.js doctor

On Windows PowerShell:

$env:DEAL_INTEL_PYTHON="$HOME\miniconda3\envs\deal-intel\python.exe"
node bin\deal-intel-mcp.js doctor

Release smoke

For normal public-release smoke, use the published package:

npx.cmd [email protected] setup --python "<path-to-python-3.11+>"
npx.cmd [email protected] smoke --profile-only
npx.cmd [email protected] where --json
npx.cmd [email protected] mcpb --json
npx.cmd [email protected] mcp-config --json

For pre-publish or local regression smoke, use a local wheel:

$env:DEAL_INTEL_HOME = (Resolve-Path ".tmp\d35-fresh-home").Path
$wheel = (Resolve-Path ".tmp\d2_3_dist\deal_intel_mcp-0.2.3-py3-none-any.whl").Path

node npm\bin\deal-intel-mcp.js setup --wheel-url $wheel --python "$HOME\miniconda3\envs\deal-intel\python.exe"
node npm\bin\deal-intel-mcp.js smoke --profile-only
node npm\bin\deal-intel-mcp.js mcp-config --json

Keep the detailed checklist in docs/bootstrapper-fresh-smoke.md.