unofficial-reddit-ads-mcp
Provides read-only access to Reddit Ads API v3, enabling analysis of campaign performance, subreddit-level breakdowns, reports, and targeting metrics.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@unofficial-reddit-ads-mcpcompare ad performance this week vs last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Reddit Ads MCP (Unofficial + Read-Only)
Read-only, analysis-first MCP server for the Reddit Ads API v3. Ask your AI assistant about your Reddit Ads performance — campaigns, subreddit-level breakdowns, reports, targeting — with a server that cannot modify anything.
Unofficial community project. Not affiliated with, endorsed, certified, or supported by Reddit, Inc. "Reddit" is a trademark of Reddit, Inc. You are responsible for your own compliance with Reddit's Ads API Terms and Developer Terms.
Why this exists
Permanently read-only. Requests only the
adsreadOAuth scope, and every outgoing API call must match a version-controlled allowlist of read operations (all 99 spec operations are explicitly classified; CI fails if a write becomes reachable). There is no write mode to misconfigure.Single advertiser per deployment. You deploy it in your own Google Cloud project (or run it locally); your credentials never touch anyone else's infrastructure. A mandatory account allowlist blocks cross-account access.
Built for analysis. Flexible reports across ~450 metrics with up to 3 breakdown dimensions (COMMUNITY — i.e. subreddit — DATE, HOUR, COUNTRY, PLACEMENT, KEYWORD, and more), plus safety ceilings so an AI client loop can't burn your rate limits or your wallet.
Personal-use cost profile. Scale-to-zero Cloud Run, max 1 instance; normal personal use lands at ~$0/month.
Related MCP server: flin-google-ads-mcp
Tools (15)
Structure: list_ad_accounts · list_campaigns · list_ad_groups ·
list_ads
Reporting: get_report · get_daily_performance
Analysis: compare_periods · rank_performance · analyze_trends ·
analyze_pacing · analyze_conversions · analyze_video ·
analyze_creatives · get_creative_context · get_account_history
Resources: reddit-ads://report-fields, reddit-ads://capabilities.
Phase 3 (diagnostics + targeting intelligence) is planned — see PLAN.md;
live-API quirks are documented in docs/API_NOTES.md.
Getting started — pick your path
🟢 Path A: "I've never installed an MCP server or used Google Cloud"
Follow docs/BEGINNER_GUIDE.md — a complete, copy-paste walkthrough from zero to asking Claude about your ads (~40 min, ~$0/month). It assumes nothing and explains what you should see at every step.
🔵 Path B: Advanced (you know your way around a terminal)
Reddit credentials (~10 min): create a developer app in Reddit Ads Manager (Developer Applications, redirect URI
http://localhost:8912/callback), authorize withscope=adsreadduration=permanent, exchange the code for a refresh token — condensed steps in docs/AUTHENTICATION.md. Grab youra2_…ad account ID from the Ads Manager account switcher.
Deploy to your own Cloud Run (~15 min): follow docs/DEPLOY_GCP.md — Secret Manager for the four secrets, dedicated least-privilege service account,
gcloud builds submit+gcloud run deploywith the personal-use cost profile (scale-to-zero, max 1 instance), and a billing alert.Or run locally over stdio (no cloud at all):
pip install .Claude Code / Claude Desktop config:
"reddit-ads": { "type": "stdio", "command": "reddit-ads-mcp", "env": { "REDDIT_CLIENT_ID": "…", "REDDIT_CLIENT_SECRET": "…", "REDDIT_REFRESH_TOKEN": "…", "REDDIT_USER_AGENT": "desktop:unofficial-reddit-ads-mcp:0.2.1 (by /u/you)", "ALLOWED_ACCOUNT_IDS": "a2_youraccount" } }Connect: claude.ai custom connector (secret-path mode URL) or any header-capable MCP client (bearer mode). Details below.
Before you rely on the numbers, read docs/API_NOTES.md — the live API differs from its own spec in ways that matter (unit scaling, keyword-report lookback, pagination semantics). This server compensates for all of them, with formulas returned alongside every derived value.
Remote authentication (pick exactly one)
Mode | Use when | How |
| Your MCP client can send headers (Claude Code, API) |
|
| Client cannot send custom headers (claude.ai custom connectors) | Endpoint served at |
Secret-path mode treats the URL as the credential: it can appear in client
settings, browser history, and infrastructure logs. Generate it with
python3 -c "import secrets; print(secrets.token_urlsafe(32))", rotate it
periodically, and prefer bearer mode when possible.
Safety & privacy properties
Only
adsread; startup fails if the token grant includes write scopes.Exact-match operation allowlist; pagination URLs are validated (HTTPS, host, path family) before being followed.
Mandatory
ALLOWED_ACCOUNT_IDS; every tool call re-checks the account.Rate/loop safeguards: 60 tool calls per rolling hour, 20 upstream requests per call, duplicate-call suppression, 90-day report ceiling, bounded rows, pages, and response size.
No database, no persistent cache, no payload logging. Report rows and entity names never appear in logs.
Data disclosure note: this server returns your advertising metrics to the MCP client you connect — typically a hosted AI assistant. Review your AI provider's data handling and your own obligations under Reddit's terms before connecting a production account. Do not share one deployment across unrelated advertisers, and do not use returned data to train models without the necessary permissions.
Development
pip install -e ".[dev]"
python3 -m unittest discover tests # or: pytest
python3 scripts/check_openapi_drift.py # spec/registry drift gateThe pinned OpenAPI spec lives in openapi/ with its checksum. Any spec update
requires reclassifying changed operations and regenerating the registry in the
same commit — CI enforces this.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceRead-only MCP server for analyzing VK Ads campaigns, listing ad structures, retrieving statistics, and generating optimization recommendations.Last updated81MIT
- AlicenseBqualityBmaintenanceRead-only MCP server for Google Ads, enabling querying campaigns, ad groups, ads, insights, and keywords without create/update/delete operations.Last updated9MIT
- AlicenseBqualityBmaintenanceA read-only MCP server that provides comprehensive access to the TikTok Business API for retrieving advertising data, including campaigns, ad groups, ads, and performance reports.Last updated24MIT
- Alicense-qualityDmaintenanceRead-only MCP server for Meta Ads that lists and reads ad accounts, campaigns, ad sets, ads, ad images, creatives, and fetches insights at various levels.Last updatedMIT
Related MCP Connectors
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
Read-only MCP server for wafergraph.com's semiconductor & AI supply-chain data: 30 tools, no auth.
Read-only MCP access to sessions, funnels, campaigns, errors, live visitors, and anomalies.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/goncaloaguer/unofficial-reddit-ads-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server