headless-browser-automation-with-puppeteer
Provides remote-controlled headless Chrome/Chromium browser automation through the Model Context Protocol, enabling LLM agents to navigate websites, interact with DOM elements, and capture page states. Uses Puppeteer's CDP (Chrome DevTools Protocol) bindings to execute browser commands asynchronously, with MCP server wrapping exposing these as callable tools for Claude and other LLM clients.
Unique: Wraps Puppeteer's CDP bindings as an MCP server, allowing LLM agents to treat browser automation as a first-class tool with structured input/output schemas rather than requiring custom integration code
vs alternatives: Tighter LLM integration than standalone Puppeteer scripts because MCP standardizes tool discovery and parameter validation, reducing boilerplate for multi-step browser workflows
marketing-technology-stack-detection
Analyzes loaded JavaScript, pixels, and HTTP requests on a webpage to identify installed marketing technologies (Google Analytics, Facebook Pixel, Adobe Analytics, TikTok Pixel, etc.). Implements pattern matching against known MarTech vendor signatures in script tags, global variables, and network requests, then returns structured inventory of detected tools with versions and configuration details.
Unique: Combines Puppeteer's network request interception with signature-based pattern matching for MarTech vendors, enabling simultaneous detection of script tags, global variables, and pixel beacons in a single page crawl
vs alternatives: More comprehensive than browser extensions like Wappalyzer because it captures network-level pixel fires and can be integrated into automated audit workflows via MCP, not just manual inspection
google-analytics-configuration-extraction
Extracts Google Analytics configuration parameters (tracking ID, property ID, custom dimensions, event tracking setup) by inspecting the gtag.js or analytics.js global objects and intercepting network payloads sent to Google's measurement servers. Parses query parameters from analytics requests to reconstruct the measurement configuration without requiring API credentials.
Unique: Reconstructs GA configuration from network payloads and global object inspection rather than relying on GA Reporting API, enabling audits without requiring GA Admin access or API credentials
vs alternatives: Faster and less credential-dependent than GA API queries for configuration validation, though less comprehensive than Admin API for historical data
facebook-pixel-event-tracking-inspection
Monitors and logs Facebook Pixel events fired during page interaction by intercepting fbq() calls and network requests to Facebook's conversion API endpoints. Captures event names, parameters, and user data (hashed email, phone, etc.) sent to Facebook, enabling validation of pixel implementation and event tracking accuracy without Facebook Business Manager access.
Unique: Intercepts both fbq() JavaScript calls and network requests to Facebook's conversion API, providing dual-layer visibility into pixel events that client-side inspection alone cannot achieve
vs alternatives: More transparent than Facebook Ads Manager for debugging pixel issues because it shows raw event payloads and network timing, not just aggregated conversion counts
adobe-analytics-implementation-audit
Inspects Adobe Analytics (formerly Omniture) implementation by examining the AppMeasurement.js global object, tracking server configuration, and network requests to Adobe's data collection servers. Extracts report suite IDs, eVar/prop mappings, and event tracking setup to validate implementation accuracy and identify configuration drift.
Unique: Extracts Adobe Analytics configuration from AppMeasurement global object and network payloads, providing implementation-level visibility without requiring Adobe Analytics Admin Console credentials
vs alternatives: Enables offline auditing of Adobe implementations without Admin Console access, though less comprehensive than Admin API for historical reporting and processing rules
tiktok-pixel-event-capture
Monitors TikTok Pixel events by intercepting ttq.track() calls and network requests to TikTok's conversion API. Captures event names, parameters, and user identifiers (hashed email, phone, IP) sent to TikTok, enabling validation of pixel implementation and event tracking without TikTok Ads Manager access.
Unique: Dual-layer event capture combining ttq.track() JavaScript interception with TikTok API network request inspection, providing complete visibility into pixel event payloads
vs alternatives: More detailed than TikTok Ads Manager reporting for debugging because it shows raw event payloads and network timing before TikTok's server-side processing
tag-manager-container-analysis
Analyzes Google Tag Manager (GTM) and other tag manager containers by inspecting the dataLayer object, GTM configuration, and fired tags. Extracts container ID, deployed tags, triggers, and variables to validate tag manager setup and identify which tags are active on a given page.
Unique: Reconstructs GTM container state by inspecting dataLayer, window.google_tag_manager globals, and fired tag network requests, providing implementation-level visibility without GTM Admin API
vs alternatives: Enables real-time tag firing validation that GTM's preview mode cannot provide because it captures actual production tag execution and network payloads
cross-domain-tracking-validation
Validates cross-domain tracking implementation by simulating navigation between domains and inspecting how user identifiers (cookies, first-party IDs, hashed emails) are passed across domain boundaries. Checks for proper cookie domain settings, URL parameter passing, and first-party data platform (CDP) integration for identity continuity.
Unique: Orchestrates multi-domain browser navigation to validate identity continuity, capturing cookie state and URL parameters across domain boundaries in a single automated workflow
vs alternatives: More comprehensive than manual testing because it systematically validates all identity passing mechanisms (cookies, URL params, CDP syncs) across multiple domains in one audit
+2 more capabilities