meta-api-tools

meta-api-tools is a cursor rule for Cursor from kubachour/mobile-growth-mcp. It costs 22 tokens per session (707 once invoked), scanned A, original, MIT.

A set of instructions for using Meta’s Marketing API, the interface that provides advertising-account data to software, for campaigns, ad sets, ads, and performance reports.

In plain words
What is it for?
It is for listing campaigns, ad sets, and ads, and retrieving performance insights by account, date range, level, or breakdown.
Why use it?
It helps retrieve advertising data safely by using limited default results, explicit pagination, and rate-limit checks.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit It is for listing campaigns, ad sets, and ads, and retrieving performance…

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/kubachour/mobile-growth-mcp/meta-api-tools
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/kubachour/mobile-growth-mcp

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for meta-api-tools

README.md
[![agentmods](https://agentmods.dev/badge/rules/kubachour/mobile-growth-mcp/meta-api-tools.svg)](https://agentmods.dev/rules/kubachour/mobile-growth-mcp/meta-api-tools)
Your own site
<a href="https://agentmods.dev/rules/kubachour/mobile-growth-mcp/meta-api-tools"><img src="https://agentmods.dev/badge/rules/kubachour/mobile-growth-mcp/meta-api-tools.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 707 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00022 $0.00707
Opus 5 $0.00011 $0.00353
Sonnet 5 $0.00004 $0.00141
Haiku 4.5 $0.00002 $0.00071

Measured 6d ago against content hash 47850103c52a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

meta-api-tools scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/meta-api-tools.mdc · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Using Meta Marketing API Tools

When the user asks about their Meta ad account data, use the MCP tools. All tools require ad_account_id (e.g. act_123456789).

Rate Limit Safety

  • All tools default to last_7d, active-only, minimal fields
  • No auto-pagination — returns first page + cursor for explicit next page
  • Throttle header monitored — warns at >75% utilization
  • If rate limited, wait and retry. Don't make unnecessary calls.

Tool Reference

get_meta_campaigns

get_meta_campaigns(ad_account_id="act_XXX")

Returns: id, name, status, objective, bid_strategy, budgets. Optional: fields, effective_status, limit, after.

get_meta_adsets

get_meta_adsets(ad_account_id="act_XXX", campaign_id="optional")

Returns: id, name, status, campaign_id, optimization_goal, bid_strategy, targeting. Optional: fields, effective_status, limit, after.

get_meta_ads

get_meta_ads(ad_account_id="act_XXX", adset_id="optional")

Returns: id, name, status, adset_id, creative info. Optional: fields, effective_status, limit, after.

get_meta_insights

The most flexible tool. Configurable level, breakdowns, date range.

get_meta_insights(
  ad_account_id="act_XXX",
  level="campaign",           # account | campaign | adset | ad
  date_preset="last_7d",      # or time_range={since, until}
  time_increment="1",         # "1" daily, "7" weekly, omit for aggregated
  breakdowns="age,gender",    # or "publisher_platform,platform_position"
  conversion_event="mobile_app_install",
  sort="spend_descending",
  limit=50
)

get_meta_ad_fatigue

Built-in fatigue detection. Single API call.

get_meta_ad_fatigue(
  ad_account_id="act_XXX",
  campaign_id="optional",
  frequency_warning=3,
  frequency_critical=5,
  ctr_decline_threshold=30
)

Common Patterns

Campaign overview: get_meta_campaignsget_meta_insights at campaign level

Deep dive on one campaign: get_meta_adsets(campaign_id=X)get_meta_insights(level="ad") filtered to that campaign

Read the full file on GitHub · 82 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 82 lines · 22 tokens per session scan A 47850103c52a

Subscribe to this mod's changes

meta-api-tools is a cursor rule published in the GitHub repository kubachour/mobile-growth-mcp (2 stars, last pushed 4mo ago), licensed MIT. It adds 22 tokens to every session and 707 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.