# Does TikTok have an MCP server?

**Yes — Official.** TikTok maintains an official MCP server.

> Official server covers TikTok for Business (Ads) — ~400 Business API endpoints. Nothing official for consumer TikTok content.

## Facts

- Verdict: Official (Yes)
- Access: Built into the product — Ships inside the vendor's own app or CLI rather than as a standalone download.
- Endpoint: `TikTok Ads MCP server (hosted)`
- Category: [Social Media](https://mcpyet.com/category/social-media/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **In-product:** TikTok Ads MCP server (hosted) — ships inside TikTok's own product rather than as a standalone server. Documented at <https://business-api.tiktok.com/portal/docs/tiktok-ads-mcp-server/v1.3>.
- **Community alternative:** [Seym0n/tiktok-mcp](https://github.com/Seym0n/tiktok-mcp) — ★ 190, pushed 2026-02-27. Model Context Protocol (MCP) with TikTok integration

## How to connect it

Ships inside the vendor's own app or CLI rather than as a standalone download.

### Claude Code

```sh
claude mcp add tiktok -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "tiktok": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "tiktok": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "tiktok": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## How we know

TikTok Ads MCP server announced at TikTok World May 2026, documented on business-api.tiktok.com. Seed said COMMUNITY-ONLY.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Social Media

- [LinkedIn](https://mcpyet.com/mcp/linkedin.md) — Community only (Sort of)
- [Buffer](https://mcpyet.com/mcp/buffer.md) — Official (Yes)
- [Facebook](https://mcpyet.com/mcp/facebook.md) — Official (Yes)
- [YouTube](https://mcpyet.com/mcp/youtube.md) — Community only (Sort of)
- [Instagram](https://mcpyet.com/mcp/instagram.md) — Community only (Sort of)
- [Reddit](https://mcpyet.com/mcp/reddit.md) — Community only (Sort of)

---

Source: https://mcpyet.com/mcp/tiktok/ — data refreshed 2026-08-11
