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

@mambalabsdev/mcp-gtm-suite

v1.9.0

Published

MCP server for the full Mamba Labs GTM Suite. One server exposing eleven account-intelligence actors on Apify as tools: identity, firmographics, social presence, hiring, tech stack, job boards, funding, change feed, LinkedIn, signals and ICP scoring.

Readme

Mamba Labs GTM Suite MCP Server

Smithery Glama score MCP Registry npm version npm downloads license mcpservers.org

One MCP server that exposes the entire Mamba Labs GTM Suite. Install a single package and get all twenty one account-intelligence tools in your MCP client, each wrapping a Mamba Labs actor on Apify and returning Clay-ready flat JSON.

What's Inside

What it does

This server gives an AI client twenty one account-intelligence tools in one place, covering the full GTM workflow: resolve identity, enrich the account, detect buying signals, score fit, and push the survivors into a sequencer.

Identity and enrichment

  • resolve_company_identity: reconcile name, domain, and LinkedIn URL into one canonical identity with confidence scores
  • enrich_company_firmographics: enrich a domain into employee band, industry, HQ, founded year, revenue, logo, and description
  • map_company_social_presence: map a domain to LinkedIn, X, Instagram, Facebook, and YouTube URLs and follower counts
  • resolve_linkedin_url: resolve a domain or name to a LinkedIn company URL

Signals

  • scan_gtm_hiring_signals: detect GTM hiring activity from career pages
  • detect_gtm_tech_stack: detect CRM, sequencer, and marketing automation tools
  • scan_job_board_keywords: scan job boards for roles in any category
  • get_funding_press_signals: scan news and PR wires for funding, exec moves, launches, and acquisitions
  • get_company_changes: monitor a domain and return only what changed since the last run
  • detect_ai_tooling: determine whether a company declares, deploys, or charges for AI
  • fingerprint_outbound_infrastructure: determine whether a company runs cold outbound, on what stack, and from which lookalike sending domains
  • track_publication_cadence: how much long-form work a company publishes per month, and whether that rate is rising or falling

Scoring

  • aggregate_gtm_signals: combine hiring and tech-stack signals into one composite score
  • score_icp_fit: score a company against your ideal customer profile

Entity and record resolution

  • resolve_legal_entity: resolve a domain to its registered legal entity in Companies House, GLEIF or SEC EDGAR
  • classify_contact: turn a job title into a department, a seniority level and a sortable rank, by deterministic rule

Reach and readiness

  • audit_agent_accessibility: whether an AI agent can read a site, and what the site's policy says about it
  • map_company_event_presence: the third-party conferences a company publicly says it attends
  • monitor_public_awards: the companies that won work in a public award register, one row per winner
  • capture_linkedin_posts_and_commenters: recent LinkedIn posts from profiles and company pages, with the commenters LinkedIn shows publicly, and no login

All of the work runs on Apify. This package is a thin client that routes each tool call to the right actor and hands back the result.

Quick start

You need Node.js 18 or newer and an Apify account with an API token.

Add this to your Claude Desktop config:

{
  "mcpServers": {
    "mamba-gtm-suite": {
      "command": "npx",
      "args": ["-y", "@mambalabsdev/mcp-gtm-suite"],
      "env": {
        "APIFY_TOKEN": "your-apify-token"
      }
    }
  }
}

Get your token at https://console.apify.com/account/integrations, paste it in, and restart Claude Desktop. All twenty one tools will be available.

Prerequisites

  • Node.js 18 or newer
  • An Apify account with an API token

Example prompts

  • "Profile stripe.com: firmographics, hiring signals, tech stack, and an overall GTM score."
  • "Resolve the canonical identity for Deel, then enrich its firmographics and social presence."
  • "Find figma.com's LinkedIn URL, then score it against my ICP."
  • "Any funding or exec moves at openai.com recently, and what CRM do they use?"
  • "What changed at datadoghq.com since last week?"

Tools and inputs

Each tool maps to one Apify actor. Inputs mirror the actor, minus deprecated and batch-only fields:

  • resolve_company_identity: at least one of company_name, domain, or linkedin_url, plus skipCache
  • enrich_company_firmographics: at least one of domain or domains, plus company_name, batchSize, skipCache
  • map_company_social_presence: company_domain or company_name (at least one), plus platforms, includeFollowerCounts, skipCache
  • resolve_linkedin_url: company_domain or company_name (at least one)
  • scan_gtm_hiring_signals: domain (required), role_filter, ats_slug
  • detect_gtm_tech_stack: domain (required), crawl_additional_pages
  • scan_job_board_keywords: company_domain (required), role_categories (required), custom_keywords, enable_fallback, previous_roles_detected, previous_run_date
  • get_funding_press_signals: domain (required), company_name
  • get_company_changes: domain (required), company_name
  • aggregate_gtm_signals: company_domain (required), include_summary, explain_mode
  • score_icp_fit: company_domain (required), plus template, scoring_config, icp_description (+ llm_api_key, llm_provider), fetch_signals, include_explanation
  • detect_ai_tooling: at least one of domain or domains, plus check_pricing
  • fingerprint_outbound_infrastructure: at least one of domain or domains, plus scan_sending_domains, sending_domain_depth, check_deliverability
  • track_publication_cadence: at least one of domain or domains, plus max_pages_to_date, domain_time_budget_ms
  • push_leads_to_sequencer: sequencer and campaign_id (required), one of leads or dataset_id, plus api_key, min_icp_score, deduplicate, dry_run, field_mapping, custom_variables. The only tool here that writes: it adds leads to your campaign unless dry_run is true.

Full actor documentation

For the complete input and output reference, pricing, and run history of each actor, see the Mamba Labs Apify Store page:

https://apify.com/mambalabs


Mamba Labs GTM Suite

This is the umbrella server for the Mamba Labs GTM Suite, an account-intelligence fleet of twenty one tools for go-to-market signal intelligence, each backed by a dedicated Apify actor and also published as its own standalone MCP server.

| Tool | Actor | Immutable Actor ID | |---|---|---| | resolve_company_identity | Company Identity Resolver | lr8fTRAmZCBZmuwwh | | enrich_company_firmographics | Company Firmographic Enricher | YlUtLWjfPpqykmB8g | | map_company_social_presence | Company Social Presence Mapper | 4k6CCemkgBDz18m2h | | resolve_linkedin_url | Domain to LinkedIn URL Resolver | 3HtnSaqPHOg1Qg5gx | | scan_gtm_hiring_signals | GTM Hiring Signal Scraper | D7O1SA2EqwHGsGr1P | | detect_gtm_tech_stack | GTM Tech Stack Signal Enrichment | qyd7nNyqFPelQViBx | | scan_job_board_keywords | Job Board Keyword Signal Scanner | 4DvqpvhMR74NLcDDY | | get_funding_press_signals | Funding & Press Signal Scanner | FS13X6dhQVgX3XOM6 | | get_company_changes | Company Change-Event Feed | oX44rS0fkEJ3rXLWe | | aggregate_gtm_signals | GTM Signals Aggregator | xKdRfnfFNkdMpFuNs | | score_icp_fit | ICP Fit Scorer | W161DT8W4kW55dMFh | | push_leads_to_sequencer | Sequencer Lead Push | 0Jv27VeWM5tSZQs9x | | audit_agent_accessibility | Agent Accessibility Auditor | anxbRv0lKrpQ1pnua | | classify_contact | Contact Classifier | 0lGSeYJmniXhGANnO | | map_company_event_presence | Event Presence Index | WLhMy8fMDgsxdYxv5 | | resolve_legal_entity | Legal Entity Resolver | KHFyPCDIx7CyqULYm | | monitor_public_awards | Government Contract Award Monitor | zhEtllASykOcx9hJ8 | | capture_linkedin_posts_and_commenters | LinkedIn Post Tracker and Comment Capture | oiGLNPuaf5BRaz9K5 |

The Domain Deliverability Checker actor is published as a standalone MCP server but is intentionally not bundled here: it audits email-sending infrastructure (SPF, DKIM, DMARC, blacklists) rather than account intelligence, so it sits outside this suite's scope.

Built by Mamba Labs | npm | Apify Store

License

MIT

Built by Mamba Labs. https://apify.com/mambalabs