llms.txt Content
# Synter Media
> Synter is the AI Agent Operator for Ads. One integration, 14 ad platforms, 100+ tools. Manage Google Ads, Meta, LinkedIn, TikTok, Reddit, Pinterest, Snapchat, Microsoft Ads, X Ads, Amazon DSP, Taboola, Spotify Ads, Trade Desk, and StackAdapt campaigns from any MCP-compatible client. AI Agents execute campaigns, adjust budgets, sync audiences, and generate creative across all platforms from a single conversational interface.
## Product
- Name: Synter Media MCP Server
- Website: https://syntermedia.ai
- MCP Endpoint: https://mcp.syntermedia.ai
- GitHub: https://github.com/jshorwitz/synter-media
- Developer Portal: https://syntermedia.ai/developer
- Documentation: https://syntermedia.ai/docs/mcp-server
- Full Tool Documentation: https://syntermedia.ai/llms-full.txt
## Quick Start
1. Sign up at https://syntermedia.ai (free, no credit card required)
2. Connect ad accounts via OAuth at https://syntermedia.ai/settings/credentials
3. Generate API key at https://syntermedia.ai/developer
4. Add MCP config to your AI client (see below)
## Configuration
### Claude Desktop
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
```json
{
"mcpServers": {
"synter-ads": {
"url": "https://mcp.syntermedia.ai",
"headers": {
"X-Synter-Key": "syn_your_api_key_here"
}
}
}
}
```
### Claude Code
```bash
export SYNTER_API_KEY="syn_your_api_key_here"
claude mcp add synter-ads --transport http https://mcp.syntermedia.ai --header "X-Synter-Key: ${SYNTER_API_KEY}"
```
### Cursor
Add to `~/.cursor/mcp.json`:
```json
{
"mcpServers": {
"synter-ads": {
"url": "https://mcp.syntermedia.ai",
"headers": {
"X-Synter-Key": "syn_your_api_key_here"
}
}
}
}
```
### Amp
Add to `.agents/mcp.json`:
```json
{
"mcpServers": {
"synter-ads": {
"type": "http",
"url": "https://mcp.syntermedia.ai",
"headers": {
"X-Synter-Key": "syn_your_api_key_here"
}