# Claude Plugins for Marketing and Advertising: 12 Community Tools for Campaign Management, Analytics, and Content Creation

> Explore 12 Claude plugins for marketing and advertising. Manage campaigns, analyze data with Google Ads and Meta connectors, automate emails, and create content with these community tools.

- Repository: [Anthropic/claude-plugins-community](https://github.com/anthropics/claude-plugins-community)
- Tags: listicle
- Published: 2026-09-06

---

**The Claude Plugins Community repository offers 12 specialized marketing and advertising plugins, including cross-platform ad managers, video generators, email automation tools, and analytics connectors for Google Ads, Meta, TikTok, and 325+ data sources.**

Marketing and advertising professionals can extend Claude Code with community-built plugins designed for end-to-end campaign workflows. The `anthropics/claude-plugins-community` repository maintains a curated marketplace in [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) that catalogs these tools—each exposing marketing-specific capabilities through the Model Context Protocol (MCP). This guide covers every marketing-focused plugin available, their technical architecture, and practical invocation patterns.

## Cross-Platform Ad Management Plugins

### adup-ai-marketing-agent: Unified Ad Performance Dashboard

The **adup-ai-marketing-agent** plugin consolidates advertising data across Google Ads, Meta, Instagram, TikTok, LinkedIn, and other platforms into a single analytical interface. It provides **budget recommendations**, **executive reporting**, and **cross-platform performance analysis** through natural language commands.

According to the marketplace entry at line 377 of [`marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/marketplace.json), this plugin implements 91 distinct tools for ad research, creation, and optimization. The MCP tools handle OAuth authentication with each platform and normalize disparate metrics into a consistent schema for Claude to reason over.

```python

# Query consolidated ad performance

result = await claude.run("/adup-marketing overview")
print(result)   # → JSON with total spend, ROAS, channel breakdowns

```

### adspirer-ads-agent: Multi-Platform Campaign Operations

The **adspirer-ads-agent** plugin offers comparable cross-platform coverage with deeper creative workflow support. Its marketplace entry at line 666 describes capabilities spanning campaign creation, A/B testing orchestration, and automated bid adjustments. The plugin connects to Google Ads, Meta Ads, TikTok for Business, and LinkedIn Campaign Manager through authenticated MCP tools.

### ads-agent: Google Ads Specialist

For teams heavily invested in Google Ads, the **ads-agent** plugin provides granular control. The marketplace entry at line 556 specifies **account health auditing**, **keyword-bid optimization**, and **ad-copy generation** as core features. Unlike broader tools, this plugin exposes the full Google Ads API surface including campaign-level negative keyword management and Quality Score diagnostics.

```bash

# Create a Google Ads campaign via slash command

/ads-create \
  platform=google \
  objective=website_traffic \
  budget=1500 \
  target_audience="tech enthusiasts, US, 25-45"

```

## Content Creation and Creative Production Plugins

### muapi-marketing-video: AI-Generated Video Pipeline

The **muapi-marketing-video** plugin automates promotional video production through a four-stage pipeline: **storyboard generation**, **image synthesis**, **animation rendering**, and **music licensing**. The marketplace entry at line 13346 indicates this plugin integrates with generative media APIs to produce campaign-ready assets from text briefs.

```python
brief = """
Product: AI-powered note-taking app
Goal: Increase trial sign-ups
Style: Modern, pastel color palette
Duration: 15 seconds
"""
video_url = await claude.run("/muapi-video generate", prompt=brief)
print(f"Video ready at {video_url}")

```

### kopi-email-marketing: Lifecycle Email Automation

The **kopi-email-marketing** plugin specializes in **Klaviyo-integrated email marketing**. Per the marketplace entry at line 11267, it supports **brand-aware copy generation**, **audience segmentation analysis**, and **send-time optimization**. The plugin reads Klaviyo account data to personalize recommendations based on historical open rates, revenue per recipient, and flow performance metrics.

### pinterest-marketing-strategist: Platform-Specific Campaign Design

For Pinterest-centric strategies, the **pinterest-marketing-strategist** plugin at line 14995 provides **creative ideation**, **pin format optimization**, and **audience targeting guidance** tailored to Pinterest's discovery-based user behavior.

## Social Media Publishing and Community Management

### adaptlypost: Multi-Network Content Distribution

The **adaptlypost** plugin enables **publishing to 9 social platforms** from Claude Code: Instagram, TikTok, YouTube, X (Twitter), LinkedIn, Facebook, Pinterest, Threads, and Bluesky. The marketplace entry at line 30303 describes scheduling, cross-posting optimization, and platform-specific formatting rules. MCP tools handle media transcoding and API rate limiting transparently.

## Analytics and Data Integration Plugins

### supermetrics-marketing: Pre-Built Marketing Analytics

The **supermetrics-marketing** plugin delivers **42 pre-configured analytics workflows** covering performance marketing, demand generation, and eCommerce reporting. The marketplace entry at line 19420 specifies connections to Google Analytics 4, Google Ads, Facebook Ads, and major CRM platforms. Unlike raw API access, these workflows include calculated metrics (ROAS, CAC, LTV projections) and visualization-ready data frames.

### trackian-marketing-analytics: Direct Data Warehouse Querying

The **trackian-marketing-analytics** plugin at line 20431 emphasizes **federated querying across GA4, Facebook Ads, Google Ads, Search Console, and cloud data warehouses**. It exposes SQL-like access to marketing data without requiring pipeline construction, enabling ad-hoc analysis directly in Claude Code sessions.

```bash

# Pull cross-platform metrics with natural language

/trackian query "show last 30 days GA4 sessions and Facebook ad spend"

```

### windsor-ai: Broadest Platform Coverage

The **windsor-ai** plugin provides **direct access to 325+ advertising and analytics platforms**. The marketplace entry at line 21962 highlights unified ad-spend reporting, campaign comparison across vendors, and automated data normalization. This plugin excels for enterprises with fragmented marketing stacks requiring consolidated visibility.

## Specialized and Vertical Marketing Plugins

### marketing-for-life-sciences: Pharma/Biotech Compliance

The **marketing-for-life-sciences** plugin at line 12283 addresses regulatory constraints specific to pharmaceutical and biotechnology marketing. It implements **FDA/EMA-compliant KPI frameworks**, **congress marketing workflows**, and **key opinion leader (KOL) strategy tools**—capabilities absent from general-purpose marketing plugins.

### hyper-marketing: End-to-End Marketing Suite

The **hyper-marketing** plugin at line 23591 packages **30+ skills spanning advertising, SEO, social media, email, and analytics** into a unified interface. This plugin suits smaller teams seeking consolidated functionality over best-of-breed point solutions.

## How Marketing Plugins Work: Technical Architecture

The Claude Plugins Community marketplace operates through a static manifest system defined in [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json). Each marketing plugin entry contains:

- **`name`**: The identifier used in `claude plugin install <name>@claude-community`
- **`description`**: Marketing capability summary
- **`source`**: Git URL with optional SHA pinning for reproducibility
- **`category`** and **`homepage`**: Discovery metadata

### Installation and Invocation Flow

1. **Add marketplace**: `claude plugin marketplace add anthropics/claude-plugins-community`
2. **CLI resolution**: The Claude CLI pulls [`marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/marketplace.json), resolves `url`+`sha`, and registers MCP tools locally
3. **Skill invocation**: Marketing capabilities expose as slash commands (e.g., `/ads-audit`) or programmatic MCP calls

### MCP Tool Implementation

Each plugin's actual implementation resides in its own repository (e.g., `Ad-Up-VC/adup-claude-plugin` for adup-ai-marketing-agent). These repositories define:

- **Authentication handlers** for platform APIs (OAuth 2.0, service accounts)
- **Pagination logic** for large result sets
- **Error normalization** converting platform-specific errors into MCP-standard exceptions

This architecture allows Claude to focus on natural language reasoning while MCP tools handle imperative API operations.

## Summary

- **Cross-platform ad management**: adup-ai-marketing-agent, adspirer-ads-agent, and ads-agent cover Google Ads, Meta, TikTok, and LinkedIn with varying specialization depths.
- **Creative production**: muapi-marketing-video, kopi-email-marketing, and pinterest-marketing-strategist automate video, email, and social creative workflows.
- **Publishing and distribution**: adaptlypost posts to 9 social networks from Claude Code.
- **Analytics and data**: supermetrics-marketing, trackian-marketing-analytics, and windsor-ai connect to 325+ platforms for reporting and insights.
- **Vertical solutions**: marketing-for-life-sciences provides regulatory-compliant pharma marketing tools; hyper-marketing consolidates 30+ skills for lean teams.
- **Technical foundation**: All plugins register through [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) and operate via MCP tools with authenticated API access.

## Frequently Asked Questions

### How do I install a marketing plugin from the Claude Plugins Community?

Run `claude plugin marketplace add anthropics/claude-plugins-community` to register the community marketplace, then install specific plugins with `claude plugin install <plugin-name>@claude-community`. The CLI resolves the plugin source from [`marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/marketplace.json) and configures MCP tools automatically.

### Can these plugins write ad copy and creative content, or just manage campaigns?

Multiple plugins generate creative assets. **ads-agent** and **adspirer-ads-agent** produce ad copy; **muapi-marketing-video** generates complete video pipelines; **kopi-email-marketing** writes lifecycle emails. These capabilities combine with campaign management for full creative-to-deployment workflows.

### Are marketing plugins free to use?

The plugins themselves are open-source under the repository's MIT License, but they require API access to paid platforms (Google Ads, Meta, Supermetrics, etc.). You provide your own credentials—Claude Plugins Community does not broker platform access or charge usage fees.

### How does Claude handle authentication with advertising platforms?

Each plugin's MCP tools implement OAuth 2.0 or API key authentication flows. You authenticate once through Claude Code's secure credential storage, and the plugin refreshes tokens automatically. Platform credentials never transit through Anthropic's servers; authentication occurs directly between your Claude Code instance and the advertising platform.