Skip to main content
Glama
get-mcp-ads

X Ads by Get MCP Ads

README.md
<div align="center">

# X Ads MCP server

### Bring your X Ads accounts into your MCP client.

Read campaigns and performance, inspect targeting and prepare changes for explicitly selected accounts.

[![Release](https://img.shields.io/github/v/release/getmcpads-com/x-ads-mcp-server?color=2448e5)](https://github.com/get-mcp-ads/x-ads-mcp-server/releases/latest)
[![CI](https://github.com/get-mcp-ads/x-ads-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/get-mcp-ads/x-ads-mcp-server/actions/workflows/ci.yml)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
[![Node](https://img.shields.io/badge/node-%E2%89%A522.12-brightgreen.svg)](package.json)

[Watch the demo](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4) · [What's new](#whats-new) · [Install](#install-this-release) · [Tool reference](#tools) · [Try hosted getmcpads](https://www.getmcpads.com/tools/x-ads?utm_source=github&utm_medium=readme&utm_campaign=x-ads)

[![Watch the getmcpads product demo: campaign review in Claude](https://www.getmcpads.com/home/film/poster-rich.webp)](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4)

**[Play the 27-second product film](https://www.getmcpads.com/home/film/get-mcp-ads-film-1080p.mp4)**

</div>

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.

**25 read tools** · **19 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

**[v1.0.1: First standalone release](https://github.com/get-mcp-ads/x-ads-mcp-server/releases/tag/v1.0.1) · September 20, 2026**

- Create the first runnable standalone server using the reviewed native tool subset.
- Require explicit account IDs, default to read-only, preview writes and preserve native pagination.
- Use fixed X endpoints, bounded responses, timeouts and credential redaction without automatic write retries.
- Require Node.js 22.12 or newer and check Node 22/24 in CI.
- Update vulnerable dependencies and regenerate the MCP catalog.

[Full changelog](CHANGELOG.md) · [Source synchronization details](SOURCE_SYNC.md) · [All releases](https://github.com/get-mcp-ads/x-ads-mcp-server/releases)

### Upgrade notes

Requires **Node.js 22.12 or newer**. CI covers Node 22 and 24. 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.

```bash
git clone --branch v1.0.1 --depth 1 https://github.com/get-mcp-ads/x-ads-mcp-server.git
cd x-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 X Ads with hosted getmcpads](https://www.getmcpads.com/tools/x-ads?utm_source=github&utm_medium=readme&utm_campaign=x-ads). Connect your account, select the data your assistant may access and use the hosted MCP connection. See the site for current features and plans.

## Configuration

Provide these environment variables through the client's secret configuration:

| Variable | Purpose |
|---|---|
| `X_ADS_ACCESS_TOKEN` | Your user OAuth 2.0 access token. An app-only bearer token is not sufficient. |
| `X_ADS_ACCOUNT_IDS` | Required comma-separated account IDs, restricted to accounts the token may access. |
| `X_ADS_SCOPES` | Scopes actually granted to the token. Defaults to `ads.read`. |
| `X_ADS_ENABLE_WRITES` | Defaults to `false`. Only the exact value `true` exposes writes. |

Obtain your token and Ads Project access using [X's official setup guide](https://docs.x.com/x-ads-api/mcp).
Use `ads.read` for reporting, `ads.write` for campaign changes and `media.write` for uploads and media-library writes.
Setting X_ADS_SCOPES does not grant permissions. This package accepts a token; it does not run an OAuth browser flow or persist rotating refresh tokens. When the token expires, renew it securely and restart the server.

## Safety and coverage

Writes preview by default. Review the exact account, target and parameters before repeating the call with `confirm: true`.
Campaigns and line items are created paused. Activation can spend advertising budget. Media uploads can consume X API credits and are limited to 4 MB.
Do not retry a write automatically when its result is uncertain. Read the account and reconcile it first.
Selected-account checks apply before dispatch and filter account discovery responses. Unknown arguments are rejected.
Native pagination, attribution and monetary `_micro` fields are preserved. A micro unit is one millionth of the account currency.

This server exposes a reviewed subset of the official API. It does not automatically expose new upstream tools.
Native media reads and writes are included. Hosted creative galleries, visual editors and MCP Apps UI are excluded.
Use `tools/list` or [server-card.json](server-card.json) for exact schemas and [the official API reference](https://docs.x.com/x-ads-api/mcp/reference) for provider details.

## Hosted option

[getmcpads for X Ads](https://www.getmcpads.com/tools/x-ads) manages the hosted connection and account selection.
Hosted and source releases can differ. Contact: hello@getmcpads.com.

## Development

```bash
npm run typecheck
npm run lint
npm run build
npm test
npm run catalog
```

All tests run offline with synthetic responses. No live account is changed.

## Tools

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

<details>
<summary><b>25 read tools</b></summary>

| Tool | Purpose |
| --- | --- |
| `x_ads_list_ads_accounts` | List the ads accounts the authenticated user can access |
| `x_ads_list_campaigns` | List campaigns for an account |
| `x_ads_get_campaign` | Get a single campaign by ID |
| `x_ads_list_funding_instruments` | List funding instruments (payment sources) for an ads account |
| `x_ads_list_line_items` | List line items (ad groups) for an ads account |
| `x_ads_get_line_item` | Get a single line item by ID |
| `x_ads_list_promoted_posts` | List promoted posts (promoted tweets) for an ads account |
| `x_ads_list_targeting_criteria` | List targeting criteria for an ads account's line items |
| `x_ads_list_account_posts` | List posts (tweets) usable for promotion by an ads account |
| `x_ads_list_web_event_tags` | List the website conversion event tags (pixels) in an ads account; a tag's id is what a conversion line item takes as its primary_web_event_tag |
| `x_ads_list_line_item_placements` | List valid placement combinations per line item product type |
| `x_ads_get_account_stats` | Get synchronous analytics (impressions, engagements, spend) for an ads account |
| `x_ads_get_active_entities` | List which ads entities had metrics change in a time window (use before requesting account stats) |
| `x_ads_get_campaign_reach` | Get reach and average-frequency metrics for campaigns |
| `x_ads_search_targeting_interests` | Search targetable interest categories by name. |
| `x_ads_search_targeting_locations` | Search targetable locations by name. |
| `x_ads_list_cards` | List the cards in an ads account |
| `x_ads_get_card` | Get a single card by ID |
| `x_ads_list_media_library` | List the media library objects in an ads account |
| `x_ads_get_media_library_item` | Get a single media library object by media key |
| `x_ads_get_promoted_post` | Get a single promoted post by ID |
| `x_ads_get_targeting_criterion` | Get a single targeting criterion by ID |
| `x_ads_list_post_previews` | Get rendered HTML previews for published or scheduled posts |
| `x_ads_get_web_event_tag` | Get a single website conversion event tag by ID |
| `x_ads_get_media_upload_status` | Read processing status of an upload owned by the connected X user. |

</details>

<details>
<summary><b>19 write tools</b></summary>

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

| Tool | Purpose |
| --- | --- |
| `x_ads_create_campaign` | Create a campaign in an ads account. |
| `x_ads_update_campaign` | Rename a campaign or pause it (entity_status=PAUSED). |
| `x_ads_activate_campaign` | Activate a campaign (set entity_status=ACTIVE). |
| `x_ads_create_line_item` | Create a line item (ad group) under a campaign. |
| `x_ads_update_line_item` | Update a line item's bid, budget, name, schedule, placements, goal, pacing, audience expansion (set audience_expansion=EXPANDED to turn on Optimized Targeting) or entity_status. |
| `x_ads_activate_line_item` | Activate a line item (set entity_status=ACTIVE). |
| `x_ads_promote_post` | Attach post(s) to a line item as its ad creative(s). |
| `x_ads_add_targeting_criterion` | Add one targeting criterion to a line item (call once per criterion). |
| `x_ads_remove_targeting` | Remove a targeting criterion from its line item (undo a targeting mistake). |
| `x_ads_create_ad_post` | Compose a promoted-only ("nullcasted") post to use as an ad creative. |
| `x_ads_create_card` | Create a card from a JSON components payload. |
| `x_ads_delete_card` | Delete a card from an ads account. |
| `x_ads_create_media_library_item` | Register an existing media key as a named item in the account's media library. |
| `x_ads_delete_media_library_item` | Delete a media library object from an ads account Preview by default. |
| `x_ads_update_media_library_item` | Update a media library object's metadata (e.g. name, title, description) Preview by default. |
| `x_ads_create_web_event_tag` | Create a website conversion event tag (pixel); the returned id can be set as a line item's primary_web_event_tag Preview by default. |
| `x_ads_delete_web_event_tag` | Delete a website conversion event tag Preview by default. |
| `x_ads_update_web_event_tag` | Update a website conversion event tag Preview by default. |
| `x_ads_upload_media` | Upload an image, GIF or MP4 clip to X. |

</details>

## License

[Apache License 2.0](LICENSE). See [NOTICE](NOTICE).

## More from getmcpads

[Meta Ads](https://github.com/get-mcp-ads/meta-ads-mcp-server) · [Google Ads](https://github.com/get-mcp-ads/google-ads-mcp-server) · [Google Analytics 4](https://github.com/get-mcp-ads/google-analytics-mcp-server) · [Google Search Console](https://github.com/get-mcp-ads/google-search-console-mcp-server) · [TikTok Ads](https://github.com/get-mcp-ads/tiktok-ads-mcp-server) · [Pinterest Ads](https://github.com/get-mcp-ads/pinterest-ads-mcp-server)

Maintained by **Emmanuel** at [getmcpads](https://www.getmcpads.com). Questions: [hello@getmcpads.com](mailto:hello@getmcpads.com).

TDQS

A3.5/5.0

Scored across 25 tools

Disambiguation4/5

Tools are generally distinct by resource and action, with list/get/search clearly separated. Minor confusion is possible between account posts vs promoted posts and existing targeting criteria vs targeting searches, but descriptions provide enough context.

Naming Consistency5/5

Every tool follows the x_ads_ prefix with a consistent verb_noun pattern: list_ for collections, get_ for single items, and search_ for lookups. No mixed naming conventions or vague verbs.

Tool Count3/5

25 tools is at the heavy end of the range, though each maps to a distinct X Ads resource or action. The set is broad enough to feel justified, but it is larger than ideal and borders on overwhelming.

Completeness3/5

Read coverage is strong across accounts, campaigns, line items, media, cards, posts, and stats. However, there are no create/update/delete tools and multiple references to missing capabilities like add_targeting_criterion and media upload registration, leaving workflow dead ends.

Maintenance

ActivityNo data
ResponsivenessNo issues