meta_ads_ads_create
Creates a new ad in an existing ad set by linking a pre-existing creative. Returns the new ad ID.
Instructions
Creates a new ad inside an existing ad set, binding it to a pre-existing creative. Returns the new ad id. Mutating — not automatically reversible; record before-state with mureo_state_action_log_append if you may need to roll back. Default initial status is PAUSED. The creative must already exist — use meta_ads_creatives_create (or sibling constructors like meta_ads_creatives_create_carousel) to produce a creative_id before calling this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Ad name visible in Ads Manager. | |
| status | No | Initial status. Default PAUSED; only ACTIVE after operator sign-off. | |
| ad_set_id | Yes | Parent ad set ID. Must exist and not be DELETED. | |
| account_id | No | Meta Ads account ID in the format 'act_XXXXXXXXXX' (e.g. 'act_1234567890'). Optional — falls back to META_ADS_ACCOUNT_ID from the configured credentials. The leading 'act_' prefix is required. | |
| creative_id | Yes | Existing AdCreative ID to bind to this ad. Obtain from meta_ads_creatives_list / create. |