konquest-meta-ads-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
konquest-meta-ads-mcp by brandu-mos | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
konquest-meta-ads-mcp · Summary
Production-ready MCP server with 57 Meta Ads tools and premium options for supervised campaign management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
konquest-meta-ads-mcp · Install
Installation
- Clone and set up the repository:
cd meta-ads-mcp
uv sync
cp .env.example .env- Configure environment variables:
META_ACCESS_TOKEN- Meta Marketing API access token- Optional:
META_APP_SECRET,META_APP_ID,VAULT_PATH
- 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"
}
}
}
}- Run tests (optional):
uv run --extra dev python -m pytest tests/ -vfilesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.