ads-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ads-mcp by amekala | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Jupyter Notebook | TypeScript |
| Last commit | this month | this month |
ads-mcp · Summary
MCP server with 175+ tools for managing ad campaigns across Google Ads, Meta Ads, LinkedIn Ads, and TikTok Ads.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ads-mcp · Use cases
- Create and manage ad campaigns across multiple platforms from a single interface
- Analyze campaign performance and get optimization recommendations
- Research keywords with real CPC data and competitive analysis
- Automate scheduled briefs, performance monitors, and cross-platform reports
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
ads-mcp · Install
Installation
Claude Desktop
- Open Settings > Connectors > Add custom connector
- Name: **Ads MCP**
- URL:
https://mcp.adspirer.com/mcp - Complete OAuth 2.1 sign-in
Claude Code
- Run
/plugin marketplace add amekala/ads-mcp - Run
/plugin install adspirer - Run
/mcp— find **plugin:adspirer:adspirer** and click to authenticate
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"adspirer": {
"url": "https://mcp.adspirer.com/mcp"
}
}
}Gemini CLI
gemini extensions install github.com/amekala/ads-mcpeverything · 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