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...
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.
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:
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:
{
"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.
Free to start. No card required.
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.
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.
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.
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.
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.
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.
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.