Skip to main content
Glama
atmosphere-ai

AdvisorPPC X Ads MCP Server

Create campaign

x_ads_create_campaign

Create a paused X/Twitter ad campaign using a specified funding instrument. Set budgets per ad group; activate spend only after explicit user confirmation.

Instructions

Create a campaign PAUSED by default (no spend). Pass entity_status=ACTIVE only with confirm_spend=true after an explicit user ask. Needs funding_instrument_id. BUDGETS ARE SET PER AD GROUP — do not pass a campaign budget. Don't invent names.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
account_idYesAds API account id from x_ads_list_accounts, e.g. 18ce55v2od2
confirm_spendNo
entity_statusNo
funding_instrument_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.1/5.0
Behavior5/5

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

Annotations only indicate a non-read, non-destructive operation. The description adds significant behavioral context: default PAUSED status, no spend, the exact condition for ACTIVE, the need for funding_instrument_id, and the warning that budgets are per ad group. This goes well beyond what annotations provide and prevents costly mistakes.

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

Conciseness5/5

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

Four short, dense sentences with no filler. The most important safety detail (PAUSED by default, no spend) is front-loaded, and each sentence adds necessary operational guidance.

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

Completeness4/5

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

For a 5-parameter creation tool with no output schema, the description covers the key call-critical concerns: default status, spend safety, required funding instrument, budget placement, and naming. It doesn't describe the return value, but that is not essential for correct invocation. Slightly more detail on what the API returns would make it fully complete.

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?

Schema description coverage is only 20%, so the description must compensate. It does clarify entity_status (PAUSED default, ACTIVE only with confirm_spend=true), confirm_spend (needed for ACTIVE), funding_instrument_id (required), and name (don't invent names). account_id is already described in the schema. It doesn't deeply explain confirm_spend semantics, but the critical usage is clear.

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

Purpose4/5

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

States a specific verb and resource: 'Create a campaign'. It also adds key detail that the campaign is created PAUSED by default, which distinguishes it from a generic create call. It doesn't explicitly contrast with sibling tools like x_ads_create_ad_group or x_ads_update_campaign, so it misses the top score for sibling differentiation.

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 gives strong usage constraints: campaigns are paused by default, ACTIVE requires confirm_spend=true and an explicit user ask, and budgets should not be passed. However, it never names alternatives or explicitly says when to choose this tool over a sibling, so the guidance is implied rather than explicit.

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