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

marketic-mcp

v1.0.4

Published

Marketic Marketing Intelligence MCP Server — 32 tools for competitor analysis, ad creative generation, campaign optimization, social media, SEO, HubSpot CRM, and attribution modeling

Readme

Marketic MCP Server

32 marketing intelligence tools exposed via the Model Context Protocol (MCP) for AI coding assistants.

npm version License: MIT

What is this?

A standalone MCP server that gives AI coding assistants real marketing superpowers:

  • Competitor Analysis - Analyze any brand's positioning, pricing, marketing approach
  • Ad Creative Generation - Generate 5 variants of ad copy for any channel (Meta, Google, LinkedIn, etc.)
  • Campaign Planning - Build multi-channel campaigns with budget allocation
  • Social Media - Generate platform-specific posts for LinkedIn, Twitter, Instagram
  • SEO Content - Create SEO-optimized blog posts and landing page copy
  • Attribution Modeling - Multi-touch attribution with Linear, Time-Decay, Position-Decay
  • Budget Optimization - Route budget to best-performing channels using ROAS data
  • HubSpot CRM - Full CRM: contacts, deals, workflows, email campaigns
  • Signal Collection - Aggregate trends from Product Hunt, Twitter, Google Trends

Installation

npm install -g marketic-mcp

Quick Start

# Start the MCP server (stdio mode)
marketic-mcp

# Test it directly
echo '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"analyze_competitor","arguments":{"brand":"HubSpot","category":"marketing automation"}},"id":1}' | python3 mcp_server.py

MCP Tools (32 total)

| Category | Tools | |----------|-------| | Competitor Intel | analyze_competitor, compare_competitors | | Creative Generation | generate_creatives, generate_social_posts, generate_seo_content | | Campaign Management | build_campaign, optimize_budget, run_pacing_model | | Attribution | run_attribution_model, calculate_roi, simulate_funnels | | Analytics | analyze_performance, ab_analyze, segment_audience, predict_ltv | | HubSpot CRM | hub_sync_contact, hub_broadcast_event, hub_send_campaign, hub_search_prospects, hub_create_segment, hub_send_transactional | | General CRM | crm_create_lead, crm_create_deal, crm_move_deal, crm_log_activity | | Workflows | run_workflow | | Collection | collect_signals | | Optimization | optimize_ctr, model_churn_risk, credit_allocate |

Configuration

# Optional: a3m-router for LLM calls (faster, cached)
export A3M_BASE_URL="http://localhost:8787/v1"
export GROQ_API_KEY="gsk_..."

# Or direct Groq
export GROQ_API_KEY="gsk_..."

Use with Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "marketic": {
      "command": "marketic-mcp"
    }
  }
}

Use with Cursor

Settings → MCP Servers → Add new:

Name: Marketic
Command: marketic-mcp

Use with Windsurf

Windsurf Settings → MCP → Add server:

Name: Marketic  
Command: marketic-mcp

Architecture

AI Assistant (Claude/Cursor/Windsurf)
        ↓ MCP stdio
marketic-mcp (npm package)
        ↓
Python MCP Server → LLM Router → Groq/a3m-router
                         ↓
               Marketic Foundation Models
               (Attribution, Budget, Analytics, Copy)

License

MIT - github.com/Das-rebel/marketic