Reddit Ads MCP Server

Reddit Ads API v3: campaigns, ad groups, ads, reports, plus working writes with safety tiers.

Local serverstdio

What is the Reddit Ads MCP server?

Reddit Ads API v3: campaigns, ad groups, ads, reports, plus working writes with safety tiers. The reddit ads mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 12 defined tools rather than through you.

What it actually does

A Reddit Ads API v3 MCP server with working write operations and tiered safety controls, built and dogfooded by an actual Reddit advertiser. It gives an MCP client read access to campaigns, ad groups, ads, and performance reports, plus gated write tools for pausing, creating, budget and bid changes, targeting edits, and copying ads between ad groups.

Adding it to your client

The server ships on npm as mcp-server-reddit-ads, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • Group — Tools
  • Diagnostics — get_server_status
  • Accounts — get_accounts, get_account_overview
  • Entities — get_campaigns, get_campaign, get_ad_groups, get_ad_group, get_ads, get_ad
  • Creative — get_ad_creative
  • Search — find_entity
  • Reporting — get_performance_report, get_daily_performance, compare_periods, compare_ads
  • Create — create_campaign, create_ad_group, create_ad
  • Comments — update_ad_comments
  • Workflows — copy_ads
  • Resume — enable_items
  • Money — update_budget, update_bid

Configuration

You will need 5 environment variables: REDDIT_CLIENT_ID, REDDIT_CLIENT_SECRET, REDDIT_REFRESH_TOKEN, REDDIT_ADS_WRITE_TIER, REDDIT_ADS_ACCOUNT_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • A Reddit Ads account, with business-admin access so you can register an app. - Node.js 20 or newer. - An MCP client (Claude Code, Claude Desktop, or any other).

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Reddit Ads.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the reddit ads mcp server does with a few real requests.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Reddit Ads's toolset — Group, Diagnostics, Accounts and 9 more — is a fair guide to whether it matches your workflow. It is maintained by camlowe; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Reddit Ads's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
GroupTools
Diagnosticsget_server_status
Accountsget_accounts, get_account_overview
Entitiesget_campaigns, get_campaign, get_ad_groups, get_ad_group, get_ads, get_ad
Creativeget_ad_creative
Searchfind_entity
Reportingget_performance_report, get_daily_performance, compare_periods, compare_ads
Createcreate_campaign, create_ad_group, create_ad
Commentsupdate_ad_comments
Workflowscopy_ads
Resumeenable_items
Moneyupdate_budget, update_bid

How to install the Reddit Ads MCP server

{
  "mcpServers": {
    "reddit-ads": {
      "command": "npx",
      "args": ["-y", "mcp-server-reddit-ads"],
      "env": {
        "REDDIT_CLIENT_ID": "your-value",
        "REDDIT_CLIENT_SECRET": "your-value",
        "REDDIT_REFRESH_TOKEN": "your-value",
        "REDDIT_ADS_WRITE_TIER": "your-value",
        "REDDIT_ADS_ACCOUNT_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • A Reddit Ads account, with business-admin access so you can register an app. - Node.js 20 or newer. - An MCP client (Claude Code, Claude Desktop, or any other).
VariableDescriptionRequired
REDDIT_CLIENT_IDConfiguration value read at startup.Optional
REDDIT_CLIENT_SECRETCredential the server authenticates with.Yes
REDDIT_REFRESH_TOKENCredential the server authenticates with.Yes
REDDIT_ADS_WRITE_TIERConfiguration value read at startup.Optional
REDDIT_ADS_ACCOUNT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Reddit Ads to Group.
  • Use Reddit Ads to Diagnostics.
  • Use Reddit Ads to Accounts.

Frequently asked questions

It connects Reddit Ads to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (Group, Diagnostics, Accounts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Reddit Ads directly.