Critical Risk →

meta_create_adset

Creates a new ad set within a campaign. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - campaign_id (string): Parent campaign ID - name (string): Ad set name - daily_budget (number, optional): Daily budget in cents - lifetime_budget (number, optional): Lifetime budget in cen...

How to control meta_create_adset ↓

What meta_create_adset does on Meta MCP Server

AI agents use meta_create_adset to commit financial operations through Meta MCP Server — usually the final step of a payment, billing, or trading workflow. A call moves real money.

Critical Risk

Why meta_create_adset needs a policy

Creating an ad set directly commits advertising budget (financial obligation) to Meta's ad platform. The tool accepts monetary parameters (daily_budget, lifetime_budget in cents) and links to a billing event, meaning misuse could result in unintended ad spend. This constitutes a financial commitment, making Financial the most severe applicable category.

From the tool's definition Creates a new ad set within a campaign with 'daily_budget' and 'lifetime_budget' parameters measured in cents, committing financial spend obligations on an ad account.

Documented attack patterns abuse exactly the kind of access meta_create_adset gives an agent:

How to control meta_create_adset

PolicyLayer is an MCP gateway — it sits between your AI agents and Meta MCP Server, and nothing reaches the server without passing your rules. This is the rule we recommend for meta_create_adset:

policy.json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "meta_create_adset": {
      "deny_if": [
        {
          "conditions": [],
          "on_deny": "Requires human approval."
        }
      ]
    }
  }
}

Any call to meta_create_adset is blocked until a human approves it. The rest of the server keeps working.

  1. Create a free account and register Meta MCP Server — nothing to install.
  2. Add this policy — paste it, or build it visually.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
GATE THIS TOOL →

Free to start. No card required.

Related tools and policies

Go deeper

Questions about meta_create_adset

What does the meta_create_adset tool do? +

Creates a new ad set within a campaign. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - campaign_id (string): Parent campaign ID - name (string): Ad set name - daily_budget (number, optional): Daily budget in cents - lifetime_budget (number, optional): Lifetime budget in cents (requires end_time) - billing_event (string): How you. It is categorised as a Financial tool in the Meta MCP Server MCP Server, which means it involves financial transactions. Block by default and require explicit approval.

How do I enforce a policy on meta_create_adset? +

Register the Meta MCP Server MCP server in PolicyLayer and add a rule for meta_create_adset: allow, deny, rate-limit, or require approval. Point your MCP client at the PolicyLayer proxy URL and the rule is enforced on every call, before it reaches Meta MCP Server. Nothing to install.

What risk level is meta_create_adset? +

meta_create_adset is a Financial tool with critical risk. Critical-risk tools should be blocked by default and only enabled with explicit human approval.

Can I rate-limit meta_create_adset? +

Yes. Add a rate_limit block to the meta_create_adset rule in your PolicyLayer policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.

How do I block meta_create_adset completely? +

Set action: deny in the PolicyLayer policy for meta_create_adset. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.

What MCP server provides meta_create_adset? +

meta_create_adset is provided by the Meta MCP Server MCP server (oliverames/meta-mcp-server). PolicyLayer sits as a proxy in front of this server to enforce policies before tool calls reach the server.

Enforce policy on every Meta MCP Server tool call.

Start from Meta MCP Server, add the rest of your stack, and see everything your agents can call. Then put policy on all of it.

Free to start. No card required.

200 Meta MCP Server tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.