Meta Ads MCP OAuth Works But Most Ad Accounts Not Enabled Yet

A Reddit user attempting to use Meta's Ads MCP server with Claude Desktop reports that OAuth authentication completes successfully and all 29 tools load without errors. However, calling ads_get_ad_accounts returns a JSON response indicating the ad account is not yet enabled for Ads MCP:
{
"is_ads_mcp_enabled": false,
"is_ads_mcp_disabled_reason": "Ads MCP is gradually being rolled out. Please check back at a later date to use Ads MCP with this Ad Account."
}The user is asking if anyone has actually been enabled, and whether there are specific actions that might get prioritized — such as submitting a form, business verification status, or account spend history. They note they couldn't find a beta interest form that actually does anything.
This is a common early-access rollout pattern: the MCP server infrastructure is live and authentication works, but feature flags on the backend gate individual ad accounts. If you hit this same response, there's no workaround yet — Meta appears to be expanding access over time without a public signup form.
For now, developers integrating with Meta Ads should plan for a manual fallback (e.g., using the Ads API directly) until their account is enabled. Keep an eye on is_ads_mcp_disabled_reason for updates — if Meta changes the reason message or enables your account, the same endpoint will reflect that.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude-context-lint tool audits token overhead in Claude Code projects
A new tool called claude-context-lint scans Claude Code projects to show how much context window is consumed by CLAUDE.md files, skills, MCP servers, and system prompts before user input. The tool provides specific recommendations for reducing token usage.

Recursive Self-Improvement Framework for AI Coding Agents Using Claude Code
An open-source framework enables AI coding agents to recursively improve themselves using Claude Code. The system analyzes agent traces, identifies failure patterns, and implements fixes, achieving a 25% performance increase in one test cycle.

AlphaCreek: An MCP Server That Chunks SEC Filings to Cut Token Usage by 85%
AlphaCreek is a free MCP connector for Claude that reduces token consumption by ~85% when working with SEC filings by first returning a table of contents, then fetching only the sections the agent requests.

Open-source framework for persistent AI agent memory with local storage and graph-based retrieval
A developer has been building an open-source framework for persistent AI agent memory that stores data locally as Markdown files, uses wiki-links as graph edges, and implements Git for version control. The system features four-signal retrieval and graph-aware forgetting based on ACT-R cognitive science.