konquest-meta-ads-mcp

konquest-meta-ads-mcp

Supervised Meta Ads operating system for Claude Code. 57 tools for campaign management, multi-asset ads, targeting, pixel diagnostics, catalogs, and safety gates. All ads created PAUSED - operator approves every action.

Category
访问服务器

README

KonQuest Meta Ads MCP

PyPI License: MIT konquest-meta-ads-mcp MCP server

Supervised Meta Ads Operating System for Claude Code.

pip install konquest-meta-ads-mcp

Open-Core Model

KonQuest Meta Ads MCP uses an open-core model.

Public package, this repository, 57 tools, MIT license

  • Full CRUD for campaigns, ad sets, and ads
  • Multi-asset ad creation for video and static image formats
  • Image upload and retrieval
  • Campaign duplication and standalone ad set duplication
  • Single-account insights and bulk cross-account analytics
  • Pixel and tracking diagnostics
  • Catalog and DPA support, including product set create and update
  • Full targeting toolkit
  • Setup readiness checker with 42+ checks and fix instructions
  • Validation pipeline, naming enforcement, post-write verification
  • Safety tiers, rate limiting, rollback references
  • 181 automated tests

Premium bundle, adds 41 tools

  • Advisory optimization engine, review queues, learning, experiments, budget governor, creative rotation
  • Vault intelligence and copy generation, including brand voice, ICP targeting, concept selection
  • Greek language QA, Greeklish detection, orthography checks
  • Automation suite, diagnostics, bulk operations, account audit
  • Vault bootstrap, 15 template files per client
  • Premium tests and evaluations

Get the Premium Bundle (€149 launch price)
One-time purchase, perpetual license. Public tools work fully without it.

Quick Start

1. Install

pip install konquest-meta-ads-mcp

2. Copy environment template

cp .env.example .env

3. Set your token

Required:

  • META_ACCESS_TOKEN

Optional:

  • META_APP_SECRET
  • META_APP_ID
  • VAULT_PATH

4. Add it to Claude Code

Add this to your .mcp.json:

{
  "mcpServers": {
    "meta-ads": {
      "command": "uv",
      "args": ["--directory", "/path/to/konquest-meta-ads-mcp", "run", "python", "-m", "meta_ads_mcp"],
      "env": {
        "META_ACCESS_TOKEN": "your_token_here",
        "VAULT_PATH": "/path/to/your/marketing-vault"
      }
    }
  }
}

5. Run setup validation

Use run_setup_check first to validate token, permissions, accounts, pages, IG, pixels, and vault readiness.

What Makes This Different

  • Production-tested across real client campaigns, real budgets, and real edge cases
  • Not a thin wrapper around a handful of Meta API calls
  • Safety-first by design, with validation, naming gates, diagnostics, verification, and rollback
  • Multi-asset workflows included, for both video and static image variants
  • Supervised, not autonomous, the operator confirms every meaningful write
  • Vault-aware architecture, premium workflows can read client intelligence such as ICPs, brand voice, and messaging angles
  • Greek language QA built in, adaptable to broader language validation workflows
  • Ads created paused by default, nothing goes live without explicit operator intent

Public Package Capabilities

The public repository contains the execution and control layer.

Account management

  • Token health
  • Ad account discovery
  • Pages
  • Instagram identities
  • Discovery workflows

Campaigns

  • Create
  • Read
  • Update
  • Structural delete workflows

Ad sets

  • Create
  • Read
  • Update
  • Standalone duplication

Ads

  • Create
  • Read
  • Update
  • Creative swap workflows

Creative workflows

  • Standalone single-image creative creation
  • Creative name update
  • Multi-asset video workflows
  • Multi-asset static image workflows

Images and video

  • Image upload from URL
  • Image retrieval by hash
  • Video upload
  • Video processing status

Insights and diagnostics

  • Single-account insights
  • Bulk cross-account insights
  • Pixel diagnostics
  • Tracking checks
  • Catalog and DPA diagnostics

Catalog and DPA

  • Catalog reads
  • Feed visibility
  • Product set create
  • Product set update

Targeting

  • Interests
  • Behaviors
  • Geo
  • Demographics
  • Suggestions
  • Audience size estimation

Setup and control

  • Setup readiness checker
  • Validation pipeline
  • Naming enforcement
  • Post-write verification
  • Safety tiers
  • Rate limiting
  • Rollback references

Premium Bundle Capabilities

The premium bundle adds the intelligence and optimization layer.

Advisory Optimization Engine

  • Optimization cycles
  • Review queues
  • Outcome evaluation
  • Learning cycles
  • Experiment planning and evaluation
  • Budget governor
  • Creative rotation
  • Operator digests

Vault Intelligence and Copy Generation

  • Vault-driven copy generation
  • Copy validation
  • Brand voice grounding
  • ICP-aware messaging
  • Concept selection

Automation Suite

  • Greek language QA
  • Full account diagnostics
  • Bulk ad copy fixes
  • Product extension workflows
  • Multi-account audit

Vault Bootstrap

  • Creates 15 canonical template files per client
  • Speeds up onboarding for premium intelligence workflows

Tool Availability Summary

Public package

Category Tools Availability
Account Management 6 Public
Campaigns 4 Public
Ad Sets 4 Public
Ads 4 Public
Creatives 3 Public
Insights & Analytics 2 Public
Pixels & Tracking 5 Public
Catalogs & DPA 6 Public
Audiences 1 Public
Targeting 6 Public
Images 2 Public
Video Management 2 Public
Ad Builder 1 Public
Naming Convention 1 Public
Ops 5 Public
Vault Reader 1 Public
Duplication 2 Public
Setup 1 Public

Premium bundle

Category Tools Availability
Automation & Diagnostics 6 Premium
Copy Engine 2 Premium
Vault Bootstrap 1 Premium
Advisory Optimization Engine 32 Premium

Full System Classification

This classification refers to the full KonQuest system, meaning public package plus premium bundle.

Classification Count Description
production-safe 38 Read-oriented access and low-risk operations
supervised-only 29 Write or change operations requiring operator approval
advisory-only 31 Recommendations, plans, diagnostics, copy, and local intelligence workflows
Total 98 Full system

Architecture

Public package architecture

meta_ads_mcp/
  core/          # Public API read/write modules
  safety/        # Rate limiting, rollback, tiers, duplicate checks
  validators/    # Compliance, creative, tracking, structure, operational validation
  engine/        # Public helper modules required by the open-core package

Full platform architecture, public plus premium

meta_ads_mcp/
  core/          # 66 tools across public and premium core workflows
  engine/        # 32 premium advisory and optimization tools
  validators/    # Quality gates
  safety/        # Rate limiting, rollback, duplicate checking, file locks, tier access
  ingestion/     # Internal ingestion and manifest pipeline

Engine Features

  • Optimization loops for budget shifting based on performance signals
  • Experiment management with evaluation and winner promotion workflows
  • Budget governors to reduce overspend risk
  • Creative rotation to detect fatigue and stale creative conditions
  • Policy learning to track outcomes and adapt confidence over time
  • Naming gate to enforce consistent naming before API writes

Safety Features

  • Rate limiting with backoff for Meta API usage
  • Rollback for recent changes with execution journal support
  • Duplicate checking to reduce accidental duplicate campaign and ad creation
  • File locks for safer concurrent local state access
  • Tier-based access with sandbox, standard, and production-style controls

Validator Suite

  • Compliance validator for policy-oriented pre-checks
  • Creative spec validator for image and video validation
  • Tracking validator for pixel and event verification
  • Structure validator for campaign structure consistency
  • Operational validator for budget, schedule, and targeting sanity checks

Setup

1. Install

pip install konquest-meta-ads-mcp

Or from source:

git clone https://github.com/brandu-mos/konquest-meta-ads-mcp.git
cd konquest-meta-ads-mcp
uv sync

2. Environment Variables

Copy .env.example to .env and fill in your values:

cp .env.example .env

Required:

  • META_ACCESS_TOKEN, Meta Marketing API access token, system user token recommended

Optional:

  • META_APP_SECRET, for appsecret_proof, recommended for production
  • META_APP_ID, Meta app ID
  • VAULT_PATH, path to your marketing vault directory, defaults to ~/marketing-vault

3. MCP Configuration

Add to your Claude Code MCP config (.mcp.json):

{
  "mcpServers": {
    "meta-ads": {
      "command": "uv",
      "args": ["--directory", "/path/to/konquest-meta-ads-mcp", "run", "python", "-m", "meta_ads_mcp"],
      "env": {
        "META_ACCESS_TOKEN": "your_token_here",
        "VAULT_PATH": "/path/to/your/marketing-vault"
      }
    }
  }
}

4. Vault Usage

Vault usage is optional for the public open-core package.

Premium intelligence and copy workflows rely on vault-based client context.

If using vault-backed workflows:

your-vault/
  01_CLIENTS/{client-slug}/
    00-profile.md
    02-icp-personas.md
    04-brand-voice.md
    05-messaging-house.md
    08-objections.md
    matrix.md
  02_COMPETITORS/{slug}/
    landscape.md

Testing

uv run --extra dev python -m pytest tests/ -v
  • Public package: 181 passing
  • Full system with premium: 246 passing

Premium Bundle

The premium bundle upgrades the public package into the full KonQuest system.

It adds 41 tools for:

  • Advisory optimization engine
  • Vault intelligence
  • Copy generation
  • Greek language QA
  • Automation workflows
  • Vault bootstrap
  • Premium tests and evaluations

Get the Premium Bundle (€149 launch price)

Commercial model

  • One-time purchase
  • Perpetual license for the purchased version
  • No subscription
  • No redistribution or resale

Who This Is For

KonQuest is a fit for:

  • Meta Ads operators
  • Agencies
  • Solo performance marketers
  • Technical marketers working in Claude Code
  • Builders who want a supervised Meta Ads operating layer

Who This Is Not For

KonQuest is not a fit for:

  • People who want a hosted SaaS dashboard
  • Users looking for autonomous ad buying
  • Buyers who want a no-setup web app
  • People who do not work with Meta Ads operations

License

MIT, see LICENSE.

<!-- mcp-name: io.github.brandu-mos/konquest-meta-ads-mcp -->

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选