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

@shashwatgtmalpha/heart-jtbd-mcp

v1.0.0

Published

MCP server that exposes the live HEART x JTBD B2B prospect audit as an agent tool. Scores selling readiness against a named prospect across five HEART dimensions per buying role.

Readme

heart-jtbd-mcp

An MCP server that exposes the live HEART x JTBD B2B prospect audit as a single agent tool. It is a thin wrapper over the production funnel at https://gtmalpha-advanced.netlify.app and adds no scoring logic of its own. The agent calls one tool; the server runs the full live pipeline (firmographic and technographic enrichment, review platform and live web signal collection, real time web research, and HEART scoring per buying role) and returns the scored result.

What it scores

For a seller selling to a named prospect, it scores five HEART dimensions on a 0 to 100 scale, per buying role:

  • Hero-Making, can the champion build an internal business case
  • Expert Authority, third party validation and analyst recognition
  • Anxiety Reduction, social proof and review strength
  • Relationship, existing connection points
  • Trust, security, compliance, and credibility signals

It returns an executive summary, a deal briefing with a verdict and pre-call actions, a persona heat map, a competitive delta, and per-role recommendations.

Install

npm install -g @shashwatgtmalpha/heart-jtbd-mcp

Or run without installing:

npx @shashwatgtmalpha/heart-jtbd-mcp

The tool

run_prospect_audit

Inputs:

  • sellerCompany (string, required), the selling company name
  • sellerDomain (string, optional), e.g. freshworks.com
  • prospectCompany (string, required), the target prospect company name
  • prospectDomain (string, optional), e.g. bitscale.ai
  • region (string, optional), default Global
  • buyingRoles (string array, optional), default Champion, Economic Buyer, Technical Evaluator
  • email (string, required), the work email that carries the audit credits

The email is the credit identity. The first audit per email is free; further audits draw from a credit pack. The tool runs the real production pipeline end to end and can take two to five minutes. It returns clean structured text plus the raw JSON payload. It handles the insufficient_data and credit_exhausted cases gracefully.

Configuration

The base URL is configurable with the HEART_MCP_BASE environment variable and defaults to https://gtmalpha-advanced.netlify.app.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "heart-jtbd": {
      "command": "npx",
      "args": ["-y", "@shashwatgtmalpha/heart-jtbd-mcp"]
    }
  }
}

Claude Code

claude mcp add heart-jtbd -- npx -y @shashwatgtmalpha/heart-jtbd-mcp

How it works

The server replicates the exact request shapes and sequence the browser client uses: POST brand-start, poll check-diagnostic for both Apify actors until SUCCEEDED, mint an auditId, POST brand-score-background, then poll brand-result until done, with a staged brand-analyze fallback. No new compute, no new endpoints.

License

MIT