New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@getmcpads/meta-ads-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getmcpads/meta-ads-mcp-server

Meta Ads MCP server: 41 read tools, 23 opt-in preview-first writes.

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
240
220%
Maintainers
1
Weekly downloads
 
Created
Source

Meta Ads MCP server

Ask better questions about your Meta campaigns.

Compare campaign performance, inspect delivery and prepare changes from your MCP client.

Release CI License: Apache 2.0 Node

Watch the demo · What's new · Install · Tool reference · Try hosted getmcpads

Watch the getmcpads product demo: campaign review in Claude

Play the 27-second product film

The film demonstrates hosted getmcpads with staged data. Its creative galleries and MCP Apps interface belong to the hosted product. This repository provides the standalone native API tools.

41 read tools · 23 write tools, disabled by default.

Run locally with your own platform credentials and a client that supports stdio MCP, such as Claude Desktop, Claude Code or Cursor. Your requests go directly to the platform. For managed connections, including supported ChatGPT setups, use the hosted option.

What's new

v2.0.0: Native tools and security update · September 20, 2026

  • Use account-scoped creative reads compatible with Graph v26, including bounded historical fallback and ownership verification.
  • Add exact entity configuration and uploaded-video readiness reads.
  • Update campaign creation, budget ownership, schedule validation and post-write verification.
  • Require Node.js 22.12 or newer and check Node 22/24 in CI.
  • Update vulnerable dependencies and regenerate the MCP catalog.

Full changelog · Source synchronization details · All releases

Upgrade notes

Requires Node.js 22.12 or newer. CI covers Node 22 and 24. Version 2.0.0 drops Node 18 and 20 support. Read the current tool schemas before reusing saved arguments. Writes remain optional and require explicit confirmation. Hosted creative integrations and MCP Apps UI are outside this release.

Install this release

This is a GitHub source release. npm and MCP Registry versions are published separately. The commands below select this exact version; unpinned npx examples later in this document select the version currently available on npm.

git clone --branch v2.0.0 --depth 1 https://github.com/getmcpads-com/meta-ads-mcp-server.git
cd meta-ads-mcp-server
npm ci
npm run build

Configure your MCP client to run node with the absolute path to dist/cli.js and the platform credentials documented below.

Prefer a managed connection? Use Meta Ads with hosted getmcpads. Connect your account, select the data your assistant may access and use the hosted MCP connection. See the site for current features and plans.

What you get

41 read toolsCampaigns, ad sets, ads, creatives, audiences, pixels, catalogs, Pages, Instagram, activity logs, A/B tests and lift studies
23 write toolsOff by default. Status, budgets, schedules, renames, campaign creation. Each one previews before it applies
190 metricsIncluding derived ones computed client-side (ROAS, CPA, frequency, hook rate, attribution-window views)
56 breakdowns · 90 dimensionsWith a compatibility matrix that catches invalid combinations before they hit the API
7 resourcesLive catalogues the model can read: metrics, breakdowns, compatibility rules, 11 workflow recipes
Forward-compatible readsmeta_get_node_fields, meta_list_edge_raw, meta_get_insights_raw reach Graph fields this server doesn't model yet

The query planner

Meta rejects many metric/breakdown combinations, and the error messages rarely say why. This server encodes the compatibility matrix, so it splits an impossible request into several valid API calls and merges the results instead of failing.

meta_validate_query lets the model check a combination before spending a call on it. That is the difference between an assistant that reports "the API returned error 100" and one that returns your numbers.

Getting a token

This is the one step that takes real effort, and it's worth doing properly.

You need a Meta access token with ads_read. There are three ways to get one; the second is the one we recommend.

A System User belongs to your Business, not to a person. Its token survives password changes and staff departures, and needs no App Review to access ad accounts your Business already owns.

  • Go to Business SettingsUsers → System Users
  • Add a system user. Give it the Employee role unless you need more.
  • Assign Assets → select your ad accounts → grant View performance (add Manage campaigns only if you plan to enable writes).
  • Generate New Token → pick your app → select scope ads_read (add ads_management only for writes).
  • Set the expiry to Never.
  • Copy the token. Meta shows it once.

📖 Meta's System User documentation

Quick test: Graph API Explorer (expires in ~1 hour)

Fine for trying the server out, useless for daily work. Graph API Explorer → select your app → add ads_readGenerate Access Token.

Long-lived user token (~60 days)

Exchange a short-lived token for a 60-day one. You will have to redo this every two months. 📖 Long-lived tokens

Which permissions?

PermissionWhen you need it
ads_readAlways. Campaigns, insights, everything read-only
ads_managementOnly if you set META_ENABLE_WRITES=1
business_managementOptional. Business Manager asset discovery
pages_show_list, pages_read_engagementOptional. Page posts and organic enrichment
instagram_basicOptional. Linked Instagram accounts
catalog_managementOptional. Product catalog reads

Run meta_health_check as your first call: it reports which scopes you actually have and which ones are missing for the tools you tried to use, without printing your token.

Setup

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "meta-ads": {
      "command": "npx",
      "args": ["-y", "@getmcpads/meta-ads-mcp-server"],
      "env": {
        "META_ACCESS_TOKEN": "your-token-here"
      }
    }
  }
}

Restart Claude Desktop. Ask it: "list my Meta ad accounts".

Claude Code

claude mcp add meta-ads --env META_ACCESS_TOKEN=your-token-here -- npx -y @getmcpads/meta-ads-mcp-server

Cursor

.cursor/mcp.json in your project, same shape as the Claude Desktop config above.

From source

git clone https://github.com/getmcpads-com/meta-ads-mcp-server.git
cd meta-ads-mcp-server
npm install && npm run build
cp .env.example .env   # then fill in META_ACCESS_TOKEN
npm start

Configuration

VariableDefaultMeaning
META_ACCESS_TOKENnoneRequired. Your Meta access token
META_ENABLE_WRITESunsetSet to 1 to register the 23 write tools
META_API_VERSIONv26.0Graph API version. Override to pin another
LOG_LEVELinfodebug, info, warn, error

Check your setup at any time:

npm run doctor

Writes, and why they preview first

Write tools are disabled by default. Enable them with META_ENABLE_WRITES=1.

When enabled, every write tool returns a preview and changes nothing:

// meta_update_adset_budget { adSetId: "123", currency: "EUR", dailyBudget: 50 }
{
  "applied": false,
  "action": "meta_update_adset_budget",
  "change": { "adSet": "123", "field": "daily_budget", "amount": 50,
              "currency": "EUR", "inMinorUnits": 5000 },
  "message": "Preview only, nothing was changed. Repeat the same call with confirm: true to apply this change to the live account."
}

Only a second call carrying confirm: true touches the live account.

This is deliberate. An assistant composes these calls, and it can pick the wrong account, the wrong campaign, or the wrong order of magnitude on a budget. A mandatory preview makes the mistake visible before it costs money, and gives a human the stopping point the protocol does not guarantee on its own.

Two further guardrails:

  • meta_create_campaign always creates the campaign PAUSED. There is no option to create it active.
  • Budgets are converted to minor units per currency. The yen, the won and the CFA franc have no subunit, so sending 1250 for ¥12.50 would multiply the spend by a hundred. The server knows the zero-decimal currencies.
ToolWhat it changes
meta_update_campaign_status / _adset_status / _ad_statusPause or reactivate
meta_update_campaign_budget / _adset_budgetDaily or lifetime budget
meta_update_adset_scheduleStart and end time
meta_rename_campaign / _adset / _adName only
meta_create_campaignCreates a campaign, always PAUSED

Tools

Every tool is listed below. See server-card.json for complete parameter and output schemas.

41 read tools
ToolPurpose
meta_health_checkAgent-ready read-only health check: validates token metadata, lists accessible ad accounts, and warns about missing read scopes without exposing the access token.
meta_get_business_assetsDiscover accessible Meta Business assets read-only: businesses, pages, Instagram accounts, pixels, and datasets when permissions allow.
meta_get_pagesList accessible Facebook Pages with id, name, category, tasks, picture, and linked Instagram account references when available.
meta_get_instagram_accountsList Instagram accounts linked to accessible Pages, Business Manager assets, or an ad account when permissions allow.
meta_get_pixelsList pixels and datasets from an ad account or Business Manager when accessible, returning actionable warnings for permission-limited edges.
meta_get_ad_activityRead ad account activity logs from /{ad_account_id}/activities with object, event, actor, timestamp, and extra_data fields.
meta_get_delivery_diagnosticsAggregate read-only delivery diagnostics across campaigns, ad sets, and ads using status/effective_status/issues_info where available plus simple delivery insights.
meta_get_creative_assetsReturn ad-linked creative media with actual ad names, collection covers, all carousel/flexible components, resolved image hashes and video URLs.
meta_get_audience_detailsRead detailed custom, saved, and lookalike audiences with pagination and rich fields where permissions allow.
meta_get_catalog_productsRead Product Catalogs and Product Items when catalog access is available.
meta_join_product_insightsQuery product-breakdown insights and enrich rows with Product Catalog metadata when catalog access is available.
meta_get_brand_safety_controlsRead brand safety, suitability, placement, and context-control signals from ad account/ad set targeting and optional block-list edges.
meta_interpret_experiment_resultsRead and interpret A/B test or conversion lift study results with confidence guardrails, cells, objectives, and optional cell entities.
meta_get_organic_content_enrichmentRead Facebook Page posts and Instagram media with URLs, native periods and optional insights.
meta_list_ad_accountsList all Meta ad accounts accessible with the current token.
meta_get_account_detailsGet detailed information for a specific Meta ad account: name, currency, timezone, spend cap, status, business info.
meta_get_campaignsList campaigns for a Meta ad account.
meta_get_adsetsList ad sets for a Meta ad account, optionally filtered by campaign.
meta_get_adsList ads for a Meta ad account, optionally filtered by ad set.
meta_get_insightsQuery Meta Ads performance insights.
meta_get_campaign_structureGet hierarchical campaign structure: campaigns -> ad sets -> ads.
meta_get_creativesGet ad creative content: text, images, videos, links, call-to-action.
meta_get_audiencesList custom, saved, and lookalike audiences for a Meta ad account.
meta_get_ad_studiesList conversion lift studies and A/B tests (Ad Studies) for an ad account.
meta_get_study_resultsGet detailed results for a conversion lift or A/B test study.
meta_validate_queryValidate a metric/breakdown combination BEFORE executing.
meta_get_page_postsRead published Facebook Page posts using a Page token resolved from the connected user.
meta_debug_tokenCheck the current access token validity, expiration, and granted scopes.
meta_search_entitiesSearch campaigns, ad sets, or ads by name within an ad account.
meta_get_node_fieldsRead arbitrary flat fields from one Meta Graph node.
meta_list_edge_rawList an allowlisted read-only Meta Graph edge with caller-selected flat fields, filters, and cursor pagination.
meta_get_insights_rawQuery the Meta Insights edge with validated native field names, breakdowns, action breakdowns, attribution windows, filters, sort, summary, and pagination.
meta_search_targeting_optionsSearch Meta's read-only targeting metadata for interests, validated interests, geographies, locales, countries, cities, regions, markets, or postal codes.
meta_get_ad_previewGet the read-only preview markup for an existing Meta ad in a requested placement format.
meta_list_ad_imagesList the ad account image library (/adimages): hash, name, dimensions, status, a permanent publicly served display URL (permalink_url), short-lived CDN URLs, and optionally the creatives using each image.
meta_list_ad_videosList the ad account video library (/advideos): title, duration, processing status, and publicly served thumbnails (preferred and largest sizes).
meta_get_video_sourcesResolve fresh download URLs (source) and thumbnails for specific ad videos.
meta_get_entity_configurationRead a specific entity in its ad account for reconciliation.
meta_get_uploaded_videoCheck video processing and membership in the selected account library.
meta_get_adset_configurationRead an existing ad set, its parent campaign budget/objective and account currency before preparing an edit.
meta_get_catalog_batch_statusRead the completion and per-item errors for a catalog batch handle.
23 write tools

Disabled by default. Calls preview unless explicitly confirmed. Check the configuration and exact schema before use.

ToolPurpose
meta_create_campaignCreate a PAUSED Meta campaign with either ad set budgets (omit campaign budget), a daily campaign budget, or a lifetime campaign budget.
meta_update_adset_budgetChange an ad set daily or lifetime budget after checking its parent budget and existing schedule.
meta_update_adset_scheduleChange start and/or end time using ISO 8601 with an explicit offset.
meta_update_campaign_budgetChange an existing campaign-owned budget after verifying currency and ownership.
meta_create_adsetCreate a PAUSED Meta ad set with explicit targeting, optimization, placements, attribution, bidding and schedule.
meta_update_adset_configurationUpdate targeting, optimization, placements, attribution, bidding, budget or schedule.
meta_duplicate_adsetDuplicate a known-good ad set within the selected account, preserving complex native configuration.
meta_create_adcreativeCreate an ad creative from an existing post or an explicit object_story_spec and optional asset_feed_spec.
meta_create_adCreate a PAUSED ad using an existing ad set and creative from the selected account.
meta_update_ad_creativeReplace an ad’s creative with another existing creative from the same account.
meta_upload_ad_imageUpload an image into the selected ad account using base64 bytes (up to 5 MiB decoded).
meta_upload_ad_videoImport a video from a publicly reachable HTTPS URL or base64 MP4 bytes (up to 5 MiB decoded).
meta_create_custom_audienceCreate a website, engagement, customer-list container or lookalike audience.
meta_update_custom_audienceUpdate an existing custom audience name, description, retention or complete rule.
meta_create_product_setCreate a filtered product set in a catalog owned by the same Business as the selected ad account.
meta_update_product_setReplace a product set filter or rename it.
meta_batch_catalog_itemsCreate or update up to 50 catalog products by retailer_id.
meta_update_campaign_statusPause or reactivate a Meta campaign.
meta_update_adset_statusPause or reactivate a Meta ad set.
meta_update_ad_statusPause or reactivate a Meta ad.
meta_rename_campaignRename a Meta campaign.
meta_rename_adsetRename a Meta ad set.
meta_rename_adRename a Meta ad.
7 resources
URIContents
meta://manifestWhat this server exposes, and which tool to run first
meta://metricsAll 190 metrics with categories and formats
meta://breakdownsAll 56 breakdowns and where they are valid
meta://compatibilityThe compatibility matrix, 90 dimensions
meta://recipes11 step-by-step workflows
meta://p2-readonlyRead-only scope guidance
meta://app-reviewScope positioning for a Meta App Review submission

Security

The server holds a credential that can read live ad accounts, and modify them when writes are enabled. Concretely:

  • The token is never logged, at any log level, and never written to disk.
  • Requests go only to graph.facebook.com on the pinned version. Any other host is refused rather than called. Covered by tests.
  • Redirects are refused once a token is attached, so a redirect cannot forward your credential elsewhere. Covered by tests.
  • No telemetry. The server makes no network call other than to the Graph API. There is no analytics, no phone-home, and no usage reporting. You can verify this by grepping the source for fetch.

Full policy and reporting instructions: SECURITY.md.

Looking for a managed, multi-platform version?

Try hosted Meta Ads if you want to use this source without operating a local server. getmcpads also connects advertising, Search Console and GA4 through one MCP URL. Source availability and plan limits are listed on the site; connecting an account is still required.

  • Follow the Meta Ads connection guide.
  • Select the account or property your assistant may read.
  • Connect Claude, ChatGPT or Codex.
  • Try a read-only review: “Compare campaign results and investigate frequency alongside CTR. State missing data and do not change anything.”

See the current hosted tool catalogue and pricing before choosing a paid plan. This Apache 2.0 adapter remains independently useful with your own credentials.

Contributing

Issues and pull requests are welcome. See CONTRIBUTING.md. Please read SECURITY.md before reporting anything security-related.

Licence

Apache License 2.0. See also NOTICE.

Facebook, Meta, Instagram and the Meta Marketing API are trademarks of Meta Platforms, Inc. This project is not affiliated with, endorsed by, or sponsored by Meta Platforms, Inc. It is an independent client of a public API.

MCP contracts and desktop bundle

Every tool declares read/write annotations, parameter descriptions and a structured output schema. Successful calls expose the payload as structuredContent.result; errors retain isError: true. The generated server card contains definitions only.

Run npm run bundle -- /path/to/output to build a .mcpb desktop bundle from the current catalog. Credentials are entered locally during installation. Write tools remain disabled unless explicitly enabled.

More from getmcpads

Google Ads · Google Analytics 4 · Google Search Console · TikTok Ads · Pinterest Ads · X Ads

Maintained by Emmanuel at getmcpads. Questions: hello@getmcpads.com.

Keywords

mcp

FAQs

Package last updated on 20 Sep 2026

Related posts