meta-ads-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
meta-ads-mcp by mikusnuz | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 46 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
meta-ads-mcp · Summary
MCP server for Meta Marketing API v25.0 with 135 tools for Facebook & Instagram ad campaign management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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 |
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