TikTok Ads: 27 read tools, 277 metrics, and 5 write tools that preview before applying.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An open-source Model Context Protocol server for the TikTok Business API. It lets Claude, ChatGPT, Cursor or any MCP client read and analyse your TikTok advertising data, and change it if you choose to.
You run it. Your token stays on your machine. Nothing is proxied through a third party.
Also listed in the MCP Registry as com.getmcpads/tiktok-ads, so clients that read the registry can install it by name.
Prefer not to run it yourself? getmcpads.com is the hosted version of this server, with TikTok Ads alongside Meta Ads, Google Ads, Pinterest Ads, GA4 and Search Console behind a single endpoint, hosted OAuth, and cross-platform reporting. Same tools, same safety model, no setup.
| 27 read tools | Campaigns, ad groups, ads, creatives, audiences, pixels, events, Spark Ads, catalogs, delivery diagnostics |
| 5 write tools | Off by default. Campaign and ad group status, budgets, campaign creation. Each one previews before it applies |
| 277 metrics | Including derived ones computed client-side |
| 16 dimensions | With a compatibility matrix that catches invalid combinations before they hit the API |
| 5 resources | Live catalogues the model can read: metrics, dimensions, compatibility rules, 12 workflow recipes |
| Keyword research | tiktok_search_keywords and tiktok_get_search_ads_maturity, for TikTok Search Ads |
| Forward-compatible reads | tiktok_get_read_endpoint, tiktok_get_entities_raw, tiktok_get_report_raw reach endpoints this server doesn't model yet |
TikTok rejects many metric and dimension combinations, and its 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.
tiktok_validate_query lets the model check a combination before spending a call on it.
TikTok answers HTTP 200 even when the call failed. The applicative code field is what
decides. A client that trusts the HTTP status reports imaginary successes back to the model,
which then reasons on data that was never returned. Every call here checks code first.
TikTok ships an official MCP server, announced at TikTok World '26 and hosted at
business-api.tiktok.com/open_mcp/. It is a serious product, and it is bigger than this one.
Here is an honest comparison.
| This server | TikTok's official server | getmcpads.com | |
|---|---|---|---|
| Hosting | You host it. stdio, local process | TikTok-hosted, remote | Hosted for you |
| Data path | Direct to the Business API. No intermediary | Through TikTok's endpoint | Through our gateway |
| Tools | 32 (27 read + 5 write) | ~400 flat, or ~40 in layered mode | 32, plus 5 other platforms |
| Coverage | Reporting, structure, creatives, audiences | Far broader | Same as this server |
| Writes | Preview first, applied only on confirm: true | Applied directly | Preview first |
| Metric compatibility | Query planner splits incompatible requests | None documented | Same planner |
| HTTP 200 on failure | Checked on every call | Handled internally | Checked |
| Auditable | Yes. Apache-2.0, read every line | No | This server, audited |
| Modifiable | Fork it | No | No |
Be clear about the trade-off. If you want the widest possible surface of the TikTok API, the official server covers far more endpoints than this one does, and you should use it.
What this server offers instead is a curated set. TikTok themselves ship a layered mode that exposes about 40 tools rather than 400, because loading hundreds of tool definitions fills the model's context and makes it pick the wrong tool more often. 27 well-described read tools with a compatibility-aware planner is a deliberate design choice, not a gap.
Choose the official server for breadth, or if you don't need to see the code. Choose this one if you need your data to stay on your infrastructure, want to audit or extend what the model can do, or want writes that cannot fire on the first call. Choose getmcpads.com if you want this server's capabilities without running it, or you need more than one ad platform in the same conversation.
TikTok needs two values, not one: an access token and the App ID it belongs to.
auth_code for an
access token. TikTok's long-lived tokens do not expire on a fixed schedule, but they
are revoked when the authorization is withdrawn.TIKTOK_ACCESS_TOKEN and the App ID in TIKTOK_APP_ID.π TikTok API for Business documentation
Run tiktok_health_check as your first call. It verifies the credentials, lists the
advertiser accounts you can actually reach, and reports what is missing, without printing
your token.
| Scope group | When you need it |
|---|---|
| Reporting and read scopes | Always. Campaigns, ad groups, ads, insights |
| Campaign management scopes | Only if you set TIKTOK_ENABLE_WRITES=1 |
| Catalog and Business Center scopes | Optional, for tiktok_get_shop_catalog_diagnostics |
~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop. Ask it: "list my TikTok advertiser accounts".
.cursor/mcp.json in your project, same shape as the Claude Desktop config above.
| Variable | Default | Meaning |
|---|---|---|
TIKTOK_ACCESS_TOKEN | none | Required. Your access token |
TIKTOK_APP_ID | none | Required. The App ID the token belongs to |
TIKTOK_APP_SECRET | none | Optional, for endpoints needing app authentication |
TIKTOK_ADVERTISER_ID | none | Optional default, saves passing it on every call |
TIKTOK_BC_ID | none | Optional Business Center ID |
TIKTOK_ENABLE_WRITES | unset | Set to 1 to register the 5 write tools |
LOG_LEVEL | info | debug, info, warn, error |
Check your setup at any time:
Write tools are disabled by default. Enable them with TIKTOK_ENABLE_WRITES=1.
When enabled, every write tool returns a preview and changes nothing:
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 advertiser, 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.
One further guardrail: tiktok_create_campaign always creates the campaign DISABLE.
There is no option to create it running.
| Tool | What it changes |
|---|---|
tiktok_update_campaign_status / tiktok_update_adgroup_status | Pause or reactivate |
tiktok_update_campaign_budget / tiktok_update_adgroup_budget | Budget, in the account currency |
tiktok_create_campaign | Creates a campaign, always DISABLE |
| Tool | Purpose |
|---|---|
tiktok_health_check | Verifies credentials and advertiser access without exposing the token |
tiktok_list_advertisers | Every advertiser account the token can reach |
tiktok_get_advertiser_info | Account metadata: name, currency, timezone, status |
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/tiktok-ads)<a href="https://allmcps.com/mcp/tiktok-ads"><img src="https://allmcps.com/api/badge/tiktok-ads?style=directory" alt="TikTok Ads on AllMCPs" /></a>