Skip to main content
Glama
eneelkant

google-ads-mcp

by eneelkant

create_demand_gen_ad

Create Demand Gen ads for YouTube, Gmail, and Discover by supplying headlines, descriptions, marketing images, logos, final URLs, and business name. Control activation with ENABLED or PAUSED status.

Instructions

Create a Demand Gen ad (serves on YouTube, Gmail, Discover).

Args: customer_id: Google Ads customer ID. ad_group_id: Ad group ID (must be in a Demand Gen campaign). headlines: 1-5 headlines (max 40 chars each). descriptions: 1-5 descriptions (max 90 chars each). marketing_images: Landscape image asset resource names. logo_images: Logo asset resource names. final_urls: Landing page URLs. business_name: Business name. call_to_action_text: Optional CTA text. status: Ad status -- 'ENABLED' (default) or 'PAUSED'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoENABLED
headlinesYes
final_urlsYes
ad_group_idYes
customer_idYes
logo_imagesYes
descriptionsYes
business_nameYes
marketing_imagesYes
call_to_action_textNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate the operation is not read-only, not idempotent, and not destructive. The description adds useful context by specifying the ad can serve on multiple channels and includes constraints like character limits and default status, but it does not disclose side effects such as duplicate creation on repeated calls or dependency on previously uploaded assets.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with a clear one-line purpose followed by a compact argument list. Every listed item adds needed parameter context, though some lines simply restate what the schema already provides via titles and types.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all input parameters and their constraints, which is strong for a 10-parameter creation tool. However, with no output schema, it omits what the tool returns or how errors surface, leaving an agent without expectations for the operation's result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description carries the full parameter documentation burden. It explains each parameter beyond the raw schema, including counts for headlines/descriptions, character limits, image types, optional CTA, and the status default, which is meaningful added value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool creates a Demand Gen ad and distinguishes it by specifying the channels it serves on (YouTube, Gmail, Discover). This differentiates it from sibling ad creation tools like create_responsive_search_ad and create_video_ad without needing to open any schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for Demand Gen campaigns by requiring the ad group to be in such a campaign and by naming the ad type. However, it does not explicitly state when to prefer this tool over sibling ad creation tools or provide any exclusions or alternative routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.