{
  "markdown": "# Mamba Labs GTM Suite MCP Server\n\n[![Smithery](https://smithery.ai/badge/mambabuilt/mcp-gtm-suite)](https://smithery.ai/servers/mambabuilt/mcp-gtm-suite) [![Glama score](https://glama.ai/mcp/servers/mambalabsdev/mcp-gtm-suite/badges/score.svg)](https://glama.ai/mcp/servers/mambalabsdev/mcp-gtm-suite) [![MCP Registry](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fregistry.modelcontextprotocol.io%2Fv0%2Fservers%3Fsearch%3Dcom.mambabuilt%252Fmcp-gtm-suite%26limit%3D1&query=%24.servers%5B0%5D._meta%5B%22io.modelcontextprotocol.registry%2Fofficial%22%5D.status&label=mcp%20registry&color=blue)](https://registry.modelcontextprotocol.io/v0/servers?search=com.mambabuilt/mcp-gtm-suite&limit=1) [![npm version](https://img.shields.io/npm/v/@mambalabsdev/mcp-gtm-suite)](https://www.npmjs.com/package/@mambalabsdev/mcp-gtm-suite) [![npm downloads](https://img.shields.io/npm/dm/@mambalabsdev/mcp-gtm-suite)](https://www.npmjs.com/package/@mambalabsdev/mcp-gtm-suite) [![license](https://img.shields.io/github/license/mambalabsdev/mcp-gtm-suite)](https://github.com/mambalabsdev/mcp-gtm-suite/blob/main/LICENSE) [![mcpservers.org](https://img.shields.io/badge/mcpservers.org-listed-blue)](https://mcpservers.org/servers/mambalabsdev/mcp-gtm-suite)\n\nOne 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.\n\n## What's Inside\n\n- [What it does](#what-it-does)\n- [Quick start](#quick-start)\n- [Prerequisites](#prerequisites)\n- [Example prompts](#example-prompts)\n- [Tools and inputs](#tools-and-inputs)\n- [Full actor documentation](#full-actor-documentation)\n- [Mamba Labs GTM Suite](#mamba-labs-gtm-suite)\n- [License](#license)\n\n## What it does\n\nThis 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.\n\n**Identity and enrichment**\n\n- `resolve_company_identity`: reconcile name, domain, and LinkedIn URL into one canonical identity with confidence scores\n- `enrich_company_firmographics`: enrich a domain into employee band, industry, HQ, founded year, revenue, logo, and description\n- `map_company_social_presence`: map a domain to LinkedIn, X, Instagram, Facebook, and YouTube URLs and follower counts\n- `resolve_linkedin_url`: resolve a domain or name to a LinkedIn company URL\n\n**Signals**\n\n- `scan_gtm_hiring_signals`: detect GTM hiring activity from career pages\n- `detect_gtm_tech_stack`: detect CRM, sequencer, and marketing automation tools\n- `scan_job_board_keywords`: scan job boards for roles in any category\n- `get_funding_press_signals`: scan news and PR wires for funding, exec moves, launches, and acquisitions\n- `get_company_changes`: monitor a domain and return only what changed since the last run\n- `detect_ai_tooling`: determine whether a company declares, deploys, or charges for AI\n- `fingerprint_outbound_infrastructure`: determine whether a company runs cold outbound, on what stack, and from which lookalike sending domains\n- `track_publication_cadence`: how much long-form work a company publishes per month, and whether that rate is rising or falling\n\n**Scoring**\n\n- `aggregate_gtm_signals`: combine hiring and tech-stack signals into one composite score\n- `score_icp_fit`: score a company against your ideal customer profile\n\n**Entity and record resolution**\n\n- `resolve_legal_entity`: resolve a domain to its registered legal entity in Companies House, GLEIF or SEC EDGAR\n- `classify_contact`: turn a job title into a department, a seniority level and a sortable rank, by deterministic rule\n\n**Reach and readiness**\n\n- `audit_agent_accessibility`: whether an AI agent can read a site, and what the site's policy says about it\n- `map_company_event_presence`: the third-party conferences a company publicly says it attends\n- `monitor_public_awards`: the companies that won work in a public award register, one row per winner\n- `capture_linkedin_posts_and_commenters`: recent LinkedIn posts from profiles and company pages, with the commenters LinkedIn shows publicly, and no login\n\nAll 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.\n\n## Quick start\n\nYou need Node.js 18 or newer and an Apify account with an API token.\n\nAdd this to your Claude Desktop config:\n\n```json\n{\n  \"mcpServers\": {\n    \"mamba-gtm-suite\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@mambalabsdev/mcp-gtm-suite\"],\n      \"env\": {\n        \"APIFY_TOKEN\": \"your-apify-token\"\n      }\n    }\n  }\n}\n```\n\nGet your token at https://console.apify.com/account/integrations, paste it in, and restart Claude Desktop. All twenty one tools will be available.\n\n## Prerequisites\n\n- Node.js 18 or newer\n- An Apify account with an API token\n\n## Example prompts\n\n- \"Profile stripe.com: firmographics, hiring signals, tech stack, and an overall GTM score.\"\n- \"Resolve the canonical identity for Deel, then enrich its firmographics and social presence.\"\n- \"Find figma.com's LinkedIn URL, then score it against my ICP.\"\n- \"Any funding or exec moves at openai.com recently, and what CRM do they use?\"\n- \"What changed at datadoghq.com since last week?\"\n\n## Tools and inputs\n\nEach tool maps to one Apify actor. Inputs mirror the actor, minus deprecated and batch-only fields:\n\n- `resolve_company_identity`: at least one of `company_name`, `domain`, or `linkedin_url`, plus `skipCache`\n- `enrich_company_firmographics`: at least one of `domain` or `domains`, plus `company_name`, `batchSize`, `skipCache`\n- `map_company_social_presence`: `company_domain` or `company_name` (at least one), plus `platforms`, `includeFollowerCounts`, `skipCache`\n- `resolve_linkedin_url`: `company_domain` or `company_name` (at least one)\n- `scan_gtm_hiring_signals`: `domain` (required), `role_filter`, `ats_slug`\n- `detect_gtm_tech_stack`: `domain` (required), `crawl_additional_pages`\n- `scan_job_board_keywords`: `company_domain` (required), `role_categories` (required), `custom_keywords`, `enable_fallback`, `previous_roles_detected`, `previous_run_date`\n- `get_funding_press_signals`: `domain` (required), `company_name`\n- `get_company_changes`: `domain` (required), `company_name`\n- `aggregate_gtm_signals`: `company_domain` (required), `include_summary`, `explain_mode`\n- `score_icp_fit`: `company_domain` (required), plus `template`, `scoring_config`, `icp_description` (+ `llm_api_key`, `llm_provider`), `fetch_signals`, `include_explanation`\n- `detect_ai_tooling`: at least one of `domain` or `domains`, plus `check_pricing`\n- `fingerprint_outbound_infrastructure`: at least one of `domain` or `domains`, plus `scan_sending_domains`, `sending_domain_depth`, `check_deliverability`\n- `track_publication_cadence`: at least one of `domain` or `domains`, plus `max_pages_to_date`, `domain_time_budget_ms`\n- `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.\n\n## Full actor documentation\n\nFor the complete input and output reference, pricing, and run history of each actor, see the Mamba Labs Apify Store page:\n\nhttps://apify.com/mambalabs\n\n---\n\n## Mamba Labs GTM Suite\n\nThis 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.\n\n| Tool | Actor | Immutable Actor ID |\n|---|---|---|\n| `resolve_company_identity` | [Company Identity Resolver](https://console.apify.com/actors/lr8fTRAmZCBZmuwwh) | `lr8fTRAmZCBZmuwwh` |\n| `enrich_company_firmographics` | [Company Firmographic Enricher](https://console.apify.com/actors/YlUtLWjfPpqykmB8g) | `YlUtLWjfPpqykmB8g` |\n| `map_company_social_presence` | [Company Social Presence Mapper](https://console.apify.com/actors/4k6CCemkgBDz18m2h) | `4k6CCemkgBDz18m2h` |\n| `resolve_linkedin_url` | [Domain to LinkedIn URL Resolver](https://console.apify.com/actors/3HtnSaqPHOg1Qg5gx) | `3HtnSaqPHOg1Qg5gx` |\n| `scan_gtm_hiring_signals` | [GTM Hiring Signal Scraper](https://console.apify.com/actors/D7O1SA2EqwHGsGr1P) | `D7O1SA2EqwHGsGr1P` |\n| `detect_gtm_tech_stack` | [GTM Tech Stack Signal Enrichment](https://console.apify.com/actors/qyd7nNyqFPelQViBx) | `qyd7nNyqFPelQViBx` |\n| `scan_job_board_keywords` | [Job Board Keyword Signal Scanner](https://console.apify.com/actors/4DvqpvhMR74NLcDDY) | `4DvqpvhMR74NLcDDY` |\n| `get_funding_press_signals` | [Funding & Press Signal Scanner](https://console.apify.com/actors/FS13X6dhQVgX3XOM6) | `FS13X6dhQVgX3XOM6` |\n| `get_company_changes` | [Company Change-Event Feed](https://console.apify.com/actors/oX44rS0fkEJ3rXLWe) | `oX44rS0fkEJ3rXLWe` |\n| `aggregate_gtm_signals` | [GTM Signals Aggregator](https://console.apify.com/actors/xKdRfnfFNkdMpFuNs) | `xKdRfnfFNkdMpFuNs` |\n| `score_icp_fit` | [ICP Fit Scorer](https://console.apify.com/actors/W161DT8W4kW55dMFh) | `W161DT8W4kW55dMFh` |\n| `push_leads_to_sequencer` | [Sequencer Lead Push](https://console.apify.com/actors/0Jv27VeWM5tSZQs9x) | `0Jv27VeWM5tSZQs9x` |\n| `audit_agent_accessibility` | [Agent Accessibility Auditor](https://console.apify.com/actors/anxbRv0lKrpQ1pnua) | `anxbRv0lKrpQ1pnua` |\n| `classify_contact` | [Contact Classifier](https://console.apify.com/actors/0lGSeYJmniXhGANnO) | `0lGSeYJmniXhGANnO` |\n| `map_company_event_presence` | [Event Presence Index](https://console.apify.com/actors/WLhMy8fMDgsxdYxv5) | `WLhMy8fMDgsxdYxv5` |\n| `resolve_legal_entity` | [Legal Entity Resolver](https://console.apify.com/actors/KHFyPCDIx7CyqULYm) | `KHFyPCDIx7CyqULYm` |\n| `monitor_public_awards` | [Government Contract Award Monitor](https://console.apify.com/actors/zhEtllASykOcx9hJ8) | `zhEtllASykOcx9hJ8` |\n| `capture_linkedin_posts_and_commenters` | [LinkedIn Post Tracker and Comment Capture](https://console.apify.com/actors/oiGLNPuaf5BRaz9K5) | `oiGLNPuaf5BRaz9K5` |\n\n> The [Domain Deliverability Checker](https://console.apify.com/actors/0tVgxI7A6o9jMlxmc) 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.\n\n> Built by [Mamba Labs](https://github.com/mambalabsdev) | [npm](https://www.npmjs.com/org/mambalabsdev) | [Apify Store](https://apify.com/mambabuilt)\n\n## License\n\nMIT\n\nBuilt by Mamba Labs. https://apify.com/mambalabs\n",
  "bytes": 10781,
  "sha": "793bfa48e78594844857b8a4e49f3b90596322663de77de4852cc2b9ce2eb702",
  "repo_slug": "mambalabsdev/mcp-gtm-suite",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_mambabuilt_mcp_gtm_suite_df7b93eb/readme"
}