MCP Catalogs
Home

konquest-meta-ads-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

konquest-meta-ads-mcp
by brandu-mos
everything
by modelcontextprotocol
Stars★ 27★ 85,748
30d uses
Score4677
Official
Categories
E-commerceDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

konquest-meta-ads-mcp · Summary

Production-ready MCP server with 57 Meta Ads tools and premium options for supervised campaign management.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

konquest-meta-ads-mcp · Use cases

  • Supervised Meta Ads campaign management with multi-asset ad creation
  • Advertising performance optimization through automated budget adjustments and A/B testing
  • Ad creative validation and compliance checking before launch

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

konquest-meta-ads-mcp · Install

Installation

  1. Clone and set up the repository:
cd meta-ads-mcp
uv sync
cp .env.example .env
  1. Configure environment variables:
  • META_ACCESS_TOKEN - Meta Marketing API access token
  • Optional: META_APP_SECRET, META_APP_ID, VAULT_PATH
  1. Add to Claude Code MCP configuration (.mcp.json):
{
  "mcpServers": {
    "meta-ads": {
      "command": "uv",
      "args": ["--directory", "/path/to/meta-ads-mcp", "run", "python", "-m", "meta_ads_mcp"],
      "env": {
        "META_ACCESS_TOKEN": "your_token_here",
        "VAULT_PATH": "/path/to/your/marketing-vault"
      }
    }
  }
}
  1. Run tests (optional):
uv run --extra dev python -m pytest tests/ -v

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.