# Advertising and Marketing Plugins for Claude: Campaign Management, Creative Generation, and Competitor Intelligence

> Explore Claude's advertising and marketing plugins for campaign management, creative generation, and competitor intelligence. Streamline your ad automation and gain valuable insights.

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

---

**The anthropics/claude-plugins-community repository provides six distinct categories of advertising and marketing plugins for Claude, spanning cross-platform campaign management, AI-powered creative generation, competitor ad intelligence, and protocol-compliant advertising automation.**

Claude's extensible architecture supports specialized marketing workflows through dedicated plugins hosted in the community repository. These tools expose natural-language skills—such as `/adcampaign` and `/adcp`—that interface directly with major advertising platforms including Meta, Google, TikTok, and Spotify. The canonical registry for these capabilities resides in [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json), which defines skill metadata, protocol bindings, and platform integrations.

## Categories of Advertising and Marketing Plugins

### Ad Campaign Management

The **Meta Ads Toolkit** plugin enables full lifecycle management of Facebook and Instagram campaigns directly from Claude Code. According to the marketplace manifest at line 22447 in [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json), this tool supports creating, launching, monitoring, and optimizing Meta ad campaigns through natural language commands. Users can specify budget allocations, audience demographics, and bidding strategies without leaving the development environment.

### Cross-Platform Campaign Management

For marketers managing multi-channel strategies, the **General Ad Campaign Plugin** provides a unified interface across Meta, Google, TikTok, and Reddit networks. As documented at line 23586 of the marketplace registry, this plugin supports campaign creation and management across Facebook, Instagram, Google Search, TikTok, and Reddit through a single skill endpoint, eliminating the need to switch between disparate platform UIs.

### Ad Creative Generation

The **Ad Creative Generator** plugin leverages AI to produce campaign assets from briefs. Located at line 23586 in the marketplace manifest, this tool generates both copy variations and banner images based on brand parameters, product specifications, and tonal requirements. This capability integrates Claude's language generation with visual asset production workflows.

### Competitor-Ad Library and Spy Tools

Marketing intelligence functions are handled by the **Ad Library** plugin, which enables competitive reconnaissance by browsing any advertiser's active creative formats, landing pages, and current campaigns. This tool, referenced at line 23586, supports platform-specific ad spying particularly for TikTok and Meta properties, retrieving video URLs, headline text, and creative metadata.

### Protocol-Compliance Advertising (AdCP)

The **adcp-client** plugin implements the Advertising Content Protocol (AdCP) for compliance-driven campaign workflows. Lines 312–313 of [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) define this plugin's capability to call AdCP advertising-agent tools over Model Context Protocol (MCP) or Agent-to-Agent (A2A) protocols. It supports running compliance scenarios—such as "No-Misleading-Claims" validation—and querying the AdCP registry for approved advertising practices.

### Platform-Specific Solutions

For audio advertising, the **Spotify Ads** plugin provides dedicated campaign management capabilities. As listed at line 18878 of the marketplace manifest, this tool handles campaign creation, audience targeting, ad launch, and performance reporting specifically for Spotify's audio advertising platform, supporting demographic targeting for listeners aged 18–35.

## Using Advertising Skills in Claude

The plugins expose slash-command skills that Claude interprets into platform-specific API calls. Below are executable usage patterns derived from the skill definitions in the repository:

Launch a Meta ad campaign with demographic targeting:

```text
/adcampaign
Create a new campaign on Meta called "Fall Sale 2024" with a $5,000 budget,
targeting United States, age 25-45, interests "fashion" and "shopping".

```

Generate multi-variant creative assets from a product brief:

```text
/adcreative
Produce three headline variations and a banner image for a summer-sale promotion.
Brand: "SunCo," product: "lightweight sunglasses," tone: upbeat.

```

Conduct competitor intelligence on TikTok advertising:

```text
/adlibrary
Show the most recent ads run by "AcmeWidgets" on TikTok, including video URLs and headline text.

```

Execute compliance validation via the AdCP protocol:

```text
/adcp
Execute the "No-Misleading-Claims" compliance check for the draft ad copy:
"Our product cures all headaches instantly."

```

Manage audio campaigns on Spotify:

```text
/spotifyad
Create a new audio ad campaign on Spotify named "Morning Boost",
targeting listeners aged 18-35 in the US, with a $2,000 budget.

```

## Key Source Files and Implementation Details

Understanding the plugin architecture requires referencing specific files within the repository structure:

- [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) — Central manifest registry containing all advertising plugin definitions, including the Meta Ads Toolkit (line 22447), General Ad Campaign Plugin (line 23586), and adcp-client protocol bindings (lines 312–313).

- [`.claude-plugin/quickdesign/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/quickdesign/.claude-plugin/plugin.json) — Exemplar plugin definition file demonstrating how advertising skills (e.g., `/adcampaign`) are declared, including permission scopes and API endpoint configurations.

- [`quickdesign/README.md`](https://github.com/anthropics/claude-plugins-community/blob/main/quickdesign/README.md) — User-facing documentation explaining practical workflows for employing advertising-related skills in Claude Code environments.

- [`testdino/skills/testdino-sessions/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/testdino/skills/testdino-sessions/SKILL.md) — Reference implementation showing the markdown-based skill definition structure, which serves as the template for authoring new advertising plugins with standardized input schemas and response formats.

## Summary

- **Six functional categories** of advertising and marketing plugins are available: campaign management (Meta), cross-platform orchestration, AI creative generation, competitor intelligence (Ad Library), protocol compliance (AdCP), and platform-specific tools (Spotify).

- **Natural-language skill commands** (`/adcampaign`, `/adcreative`, `/adlibrary`, `/adcp`, `/spotifyad`) map to complex platform APIs, enabling campaign creation and analysis without direct API interaction.

- **Centralized registry** at [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) maintains plugin metadata and protocol bindings at specific line locations (18878, 22447, 23586) that correspond to distinct advertising functionalities.

- **Multi-protocol support** includes standard HTTP APIs for social platforms and specialized MCP/A2A protocols for compliance-heavy advertising workflows via the adcp-client.

## Frequently Asked Questions

### Which advertising platforms does Claude support through these plugins?

Claude's advertising plugins support major platforms including Meta (Facebook and Instagram), Google Search, TikTok, Reddit, and Spotify. The General Ad Campaign Plugin provides unified access to Meta, Google, TikTok, and Reddit, while the Spotify Ads plugin offers dedicated audio campaign management.

### How do I access the AdCP compliance checking tools?

Invoke the AdCP protocol by using the `/adcp` skill command followed by the specific compliance scenario name. The adcp-client plugin, defined at lines 312–313 of [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json), handles the underlying MCP or A2A protocol communication to validate ad copy against regulatory standards.

### Where are the advertising plugin definitions stored in the repository?

All advertising and marketing plugin definitions reside in [`.claude-plugin/marketplace.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/marketplace.json) at the repository root. Specific entries appear at documented line numbers: the Meta Ads Toolkit at line 22447, cross-platform and creative tools at line 23586, and the Spotify integration at line 18878.

### Can I develop custom advertising skills for Claude?

Yes, the repository provides structural templates for skill development. The [`testdino/skills/testdino-sessions/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/testdino/skills/testdino-sessions/SKILL.md) file demonstrates the required markdown format for skill definitions, while [`.claude-plugin/quickdesign/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/quickdesign/.claude-plugin/plugin.json) shows the JSON schema for plugin registration, allowing developers to extend the advertising ecosystem with custom platform integrations.