meta-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
meta-mcp by brijr | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 175 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | E-commerceProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
meta-mcp · Summary
A comprehensive MCP server that enables AI assistants to interact with Facebook/Instagram advertising data through the Meta Marketing API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
meta-mcp · Use cases
- Automating Meta advertising campaigns through AI assistants with full lifecycle management
- Analyzing advertising performance metrics and comparing campaigns side-by-side
- Creating custom audiences and lookalike audiences for targeted advertising campaigns
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-mcp · Install
Installation
Option 1: Direct Installation (Recommended)
npm install -g meta-ads-mcpOption 2: From Source
git clone https://github.com/wipsoft/meta-mcp.git
cd meta-ads-mcp
npm install
npm run buildConfigure Claude Desktop
Create or edit your MCP config:
- **macOS**:
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows**:
%APPDATA%\Claude\claude_desktop_config.json - **Linux**:
~/.config/Claude/claude_desktop_config.json
Minimal config:
{
"mcpServers": {
"meta-ads": {
"command": "npx",
"args": ["-y", "meta-ads-mcp"],
"env": {
"META_ACCESS_TOKEN": "your_access_token_here"
}
}
}
}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