MCP Catalogs
Home

meta-ads-mcp vs memory

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

meta-ads-mcp
by mikusnuz
memory
by modelcontextprotocol
Stars★ 46★ 85,748
30d uses
Score4777
Official
Categories
E-commerceDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

meta-ads-mcp · Summary

MCP server for Meta Marketing API v25.0 with 135 tools for Facebook & Instagram ad campaign management.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

meta-ads-mcp · Use cases

  • Create and manage Facebook and Instagram advertising campaigns from end to end
  • Analyze ad performance and generate detailed reports for optimization
  • Build custom audiences and lookalike audiences for precise targeting
  • Manage product catalogs and create dynamic product ads
  • Set up automated rules to manage underperforming ads

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

meta-ads-mcp · Install

Installation

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "meta-ads": {
      "command": "npx",
      "args": ["-y", "@mikusnuz/meta-ads-mcp"],
      "env": {
        "META_ADS_ACCESS_TOKEN": "your-access-token",
        "META_AD_ACCOUNT_ID": "123456789",
        "META_APP_ID": "your-app-id",
        "META_APP_SECRET": "your-app-secret",
        "META_BUSINESS_ID": "your-business-id",
        "META_PIXEL_ID": "your-pixel-id"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |---|---|---| | META_ADS_ACCESS_TOKEN | **Yes** | Meta Marketing API access token | | META_AD_ACCOUNT_ID | **Yes** | Ad account ID (numeric, without act_ prefix) | | META_APP_ID | Optional | App ID — required for token exchange/debug | | META_APP_SECRET | Optional | App secret — required for token exchange/debug | | META_BUSINESS_ID | Optional | Business Manager ID — required for business tools | | META_PIXEL_ID | Optional | Pixel ID — required for conversion tools |

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

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

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

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

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.