MCP server wrapping Apple Ads Campaign Management API v5 with 74 typed tools for full campaign lifecycle management.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
One-click editor setup isnβt available for this listing yet β we donβt have a confirmed install command, and weβd rather show nothing than point your editor at the wrong package or host. Follow the projectβs own setup instructions, linked above.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Apple Search Ads MCP.
reports_campaignsPOST /reports/campaigns
reports_adgroupsPOST /reports/campaigns/{id}/adgroups
reports_keywords_in_campaignPOST /reports/campaigns/{id}/keywords
reports_keywords_in_adgroupPOST /reports/campaigns/{id}/adgroups/{id}/keywords
reports_search_terms_in_campaignPOST /reports/campaigns/{id}/searchterms
reports_search_terms_in_adgroupPOST /reports/campaigns/{id}/adgroups/{id}/searchterms
A Model Context Protocol (MCP) server that wraps the full Apple Search Ads (now Apple Ads) Campaign Management API v5. 74 typed tools, 1:1 mapping to every documented v5 endpoint β campaigns, ad groups, ads, creatives, custom product pages, keywords, negative keywords, reports, impression-share reports, budget orders, ACLs, geo/app search, app metadata, rejection-reason audits β plus a raw passthrough for any future endpoints.
API lifecycle: Apple Ads (Search Ads) v5 is the current production API. v5 sunsets January 26, 2027 in favour of the new "Apple Ads Platform API" arriving Summer 2026. This server targets v5.0 β v5.5.
Then register with Claude Code in one line:
The Apple Ads UI splits credentials across two screens. The API tab inside Account Settings only manages access for third-party service providers; for your own programmatic access, the flow goes through User Management first.
In app-ads.apple.com β Account Settings β User Management β Invite User:
While the invite is being processed, generate an ES256 key pair on your machine. Make sure it's PKCS#8 β Apple's .p8 examples and the older openssl ecparam output are not PKCS#8 and jose can't load them.
Keep asa-private.p8 somewhere safe (e.g. ~/.apple-search-ads/, chmod 600). You'll only paste the public half into Apple.
Sign out and sign back in as the invited API user (not the admin account). Go to Account Settings β API. You'll see a Client Credentials screen with a Public Key textarea β this only appears for users who hold the API role.
asa-public.pem (with the -----BEGIN PUBLIC KEY----- / -----END PUBLIC KEY----- markers).Copy .env.example to .env and fill it in, or pass env vars through your MCP client.
ASA_PRIVATE_KEY (PEM contents inline, with \n escapes if injected via JSON) is supported as an alternative to ASA_PRIVATE_KEY_PATH.
The server handles OAuth 2.0 client-credentials flow with an ES256 JWT client assertion:
.p8 private key (header: kid=Key ID, alg=ES256; payload: iss=Team ID, sub=Client ID, aud=https://appleid.apple.com).https://appleid.apple.com/auth/oauth2/token with grant_type=client_credentials and scope=searchadsorg.Authorization: Bearer β¦ and X-AP-Context: orgId=β¦ on every API call.The token is cached in memory until ~30 s before expiry, so you sign one assertion and exchange one token per hour. On 401 the server force-refreshes and retries once. On 429/5xx it backs off (honouring Retry-After) up to 3 times.
org_acls, me_user β call without an org context to discover what your token can do.
search_apps, search_geo, geo_lookup
apps_get, apps_locale_details, apps_eligibilities_find, apps_assets_find, creative_app_preview_devices, countries_or_regions_list
cpp_list, cpp_get, cpp_locale_details
campaigns_create, campaigns_get, campaigns_list, campaigns_find, campaigns_update, campaigns_delete
adgroups_create, adgroups_get, adgroups_list, adgroups_find_in_campaign, adgroups_find_org_wide, adgroups_update, adgroups_delete
creatives_create, creatives_list, creatives_get, creatives_find β creatives wrap a Custom Product Page, Default Product Page, or Creative Set reference. Ads bind to creatives via creativeId.
ads_create, ads_get, ads_list, ads_find_in_campaign, ads_find_org_wide, ads_update, ads_delete
targeting_keywords_create, targeting_keywords_get, targeting_keywords_list, targeting_keywords_find, targeting_keywords_update, targeting_keywords_delete (bulk), targeting_keywords_delete_single
adgroup_negative_keywords_create, adgroup_negative_keywords_get, adgroup_negative_keywords_list, adgroup_negative_keywords_find, adgroup_negative_keywords_update, adgroup_negative_keywords_delete
campaign_negative_keywords_create, campaign_negative_keywords_get, campaign_negative_keywords_list, campaign_negative_keywords_find, campaign_negative_keywords_update, campaign_negative_keywords_delete
| Tool | Endpoint |
|---|---|
reports_campaigns | POST /reports/campaigns |
reports_adgroups | POST /reports/campaigns/{id}/adgroups |
reports_keywords_in_campaign | POST /reports/campaigns/{id}/keywords |
reports_keywords_in_adgroup | POST /reports/campaigns/{id}/adgroups/{id}/keywords |
reports_search_terms_in_campaign | POST /reports/campaigns/{id}/searchterms |
reports_search_terms_in_adgroup | POST /reports/campaigns/{id}/adgroups/{id}/searchterms |
reports_ads_in_campaign | POST /reports/campaigns/{id}/ads |
All accept startTime, endTime, optional granularity (HOURLY/DAILY/WEEKLY/MONTHLY), optional groupBy (adminArea / ageRange / countryCode / countryOrRegion / deviceClass / gender / locality), selector, returnRowTotals, returnGrandTotals, returnRecordsWithNoMetrics, timeZone (UTC | ORTZ).
custom_reports_create β returns reportId. Poll with custom_reports_get until state=COMPLETED. List with custom_reports_list.
budget_orders_create, budget_orders_get, budget_orders_list, budget_orders_update. v5 has no delete for budget orders.
product_page_reasons_find, product_page_reasons_get β read-only inspection of why Apple's reviewers rejected creatives.
apple_search_ads_request β call any path with any method. Auth and org context are still handled for you.
*_find tools accept Apple's selector grammar:
Operators: EQUALS, NOT_EQUALS, CONTAINS, STARTS_WITH, ENDS_WITH, GREATER_THAN, LESS_THAN, IN, NOT_IN, CONTAINS_ALL, CONTAINS_ANY, BETWEEN. values is always an array.
A workflow you can drive entirely through Claude:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/appvisionos-apple-search-ads-mcp)<a href="https://allmcps.com/mcp/appvisionos-apple-search-ads-mcp"><img src="https://allmcps.com/api/badge/appvisionos-apple-search-ads-mcp?style=directory" alt="Apple Search Ads MCP on AllMCPs" /></a>