NewsBreak Ads MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NewsBreak Ads MCP Servershow me my ad accounts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NewsBreak Ads MCP Server
A Model Context Protocol (MCP) server for the NewsBreak Business API, built with FastMCP. This server provides tools and resources for analytics, reporting, and campaign management through the NewsBreak advertising platform.
Features
MCP Tools
The server provides the following tools for interacting with NewsBreak's advertising API:
Analytics & Reporting (Primary Focus)
get_ad_accounts- Retrieve ad accounts for specified organization IDsget_campaigns- List campaigns with filtering and pagination supportget_tracking_events- Access pixel and postback tracking eventsrun_performance_report- Generate synchronous performance reports with custom metrics and dimensionsget_campaign_summary- Quick overview of recent campaign performance
MCP Resources
Read-only resources available through URI templates:
accounts://{org_id}/ad-accounts- Ad accounts for an organizationcampaigns://{ad_account_id}/active- Active campaigns for an ad accountevents://{ad_account_id}/tracking- Tracking events for an ad account
Related MCP server: microsoft-ads-mcp
Prerequisites
Python 3.10 or higher
NewsBreak for Business account
NewsBreak API Access Token
Installation
Clone or download this repository
Install dependencies
pip install -r requirements.txtConfigure environment variables
Create a .env file in the project root:
cp .env.example .envEdit .env and add your NewsBreak access token:
NEWSBREAK_ACCESS_TOKEN=your_access_token_hereObtaining Your Access Token
Log in to NewsBreak for Business
Navigate to your account settings
Go to the API section
Generate or copy your access token
Usage
The server supports multiple authentication methods and transport options.
Command-Line Options
python server.py --help
Options:
--token TOKEN NewsBreak API access token (overrides environment variable)
--transport {stdio,http,sse}
Transport method (default: stdio)
--host HOST Host for HTTP/SSE transport (default: localhost)
--port PORT Port for HTTP/SSE transport (default: 8000)
--version Show version and exitOption 1: Local Development (STDIO)
Method 1A: Using command-line argument (RECOMMENDED)
python server.py --token YOUR_ACCESS_TOKENMethod 1B: Using environment variable
# Ensure .env file has NEWSBREAK_ACCESS_TOKEN set
python server.pyMethod 1C: Using the run script
./run_server.shOption 2: Claude Desktop Integration
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Method 2A: Pass token via command-line argument (RECOMMENDED - more secure)
{
"mcpServers": {
"newsbreak-ads": {
"command": "python",
"args": [
"/path/to/newsbreak-ads-mcp-server/server.py",
"--token",
"your_access_token_here"
]
}
}
}Method 2B: Pass token via environment variable
{
"mcpServers": {
"newsbreak-ads": {
"command": "python",
"args": [
"/path/to/newsbreak-ads-mcp-server/server.py"
],
"env": {
"NEWSBREAK_ACCESS_TOKEN": "your_access_token_here"
}
}
}
}Method 2C: Use .env file (most secure - no token in config)
{
"mcpServers": {
"newsbreak-ads": {
"command": "python",
"args": [
"/path/to/newsbreak-ads-mcp-server/server.py"
]
}
}
}Note: Requires .env file with NEWSBREAK_ACCESS_TOKEN in the project directory
Restart Claude Desktop after updating the configuration.
Option 3: HTTP Server
Run as an HTTP server for remote access:
# Using command-line token
python server.py --token YOUR_TOKEN --transport http --port 8000
# Or using environment variable
python server.py --transport http --port 8000 --host 0.0.0.0
# Or using fastmcp CLI
fastmcp run server.py --transport http --port 8000Server will be available at: http://localhost:8000/mcp
Option 4: FastMCP Cloud
Deploy to FastMCP Cloud for instant HTTPS endpoints:
# Make sure to set NEWSBREAK_ACCESS_TOKEN in cloud environment
fastmcp deploy --config fastmcp_cloud.jsonExample Usage
Get Ad Accounts
# In Claude or through MCP client
use_mcp_tool(
server="newsbreak-ads",
tool="get_ad_accounts",
arguments={
"org_ids": ["123456789"]
}
)Run Performance Report
use_mcp_tool(
server="newsbreak-ads",
tool="run_performance_report",
arguments={
"ad_account_id": "987654321",
"date_from": "2024-01-01",
"date_to": "2024-01-31",
"dimensions": ["date", "campaign_id"],
"metrics": ["impressions", "clicks", "spend", "conversions"],
"level": "campaign"
}
)Get Campaign Summary
use_mcp_tool(
server="newsbreak-ads",
tool="get_campaign_summary",
arguments={
"ad_account_id": "987654321",
"days": 7
}
)Access Resource
read_resource(
uri="campaigns://987654321/active"
)Available Tools
get_ad_accounts(org_ids: List[str])
Retrieves all ad accounts for specified organization IDs.
Parameters:
org_ids: List of organization IDs
Returns: JSON with organizations and their ad accounts
get_campaigns(ad_account_id: str, page_no: int = 1, page_size: int = 50, search: Optional[str] = None, online_status: Optional[str] = None)
Lists campaigns with optional filtering and pagination.
Parameters:
ad_account_id: Target ad account IDpage_no: Page number (default: 1)page_size: Results per page - options: 5, 10, 20, 50, 100, 200, 500 (default: 50)search: Optional search queryonline_status: Filter by status (WARNING, INACTIVE, ACTIVE, DELETED)
Returns: JSON with campaigns and pagination info
get_tracking_events(ad_account_id: str, os_filter: Optional[str] = None)
Retrieves tracking events (pixels and postbacks) for an ad account.
Parameters:
ad_account_id: Target ad account IDos_filter: Optional OS filter ("IOS", "ANDROID", or "" for web)
Returns: JSON with tracking events
run_performance_report(ad_account_id: str, date_from: str, date_to: str, dimensions: Optional[List[str]] = None, metrics: Optional[List[str]] = None, level: Optional[str] = None)
Generates a synchronous performance report.
Parameters:
ad_account_id: Target ad account IDdate_from: Start date (YYYY-MM-DD)date_to: End date (YYYY-MM-DD)dimensions: Optional dimensions (e.g., ["date", "campaign_id"])metrics: Optional metrics (e.g., ["impressions", "clicks", "spend"])level: Report level ("campaign", "ad_set", "ad")
Returns: JSON with report data
get_campaign_summary(ad_account_id: str, days: int = 7)
Quick summary of recent campaign performance.
Parameters:
ad_account_id: Target ad account IDdays: Number of days to look back (default: 7)
Returns: JSON with campaign summary
Architecture
The server is built with the following components:
server.py- Main FastMCP server with tools and resourcesclient.py- NewsBreak API client wrapper with authentication and rate limitingmodels.py- Pydantic data models for type safety and validationfastmcp.json- FastMCP deployment configuration.env- Environment variables (not committed to git)
Key Features
Rate Limiting: Built-in rate limiter (10 requests/second by default)
Error Handling: Automatic retry with exponential backoff
Type Safety: Full Pydantic model validation
Async/Await: High-performance async operations
Environment-based Config: Secure credential management
API Reference
This server implements the following NewsBreak Business API endpoints:
GET /v1/ad-account/getGroupsByOrgIds- Get ad accountsGET /v1/campaign/getList- List campaignsGET /v1/event/getList/{adAccountId}- Get tracking eventsPOST /v1/report/runSync- Run synchronous report
Base URL: https://business.newsbreak.com/business-api/v1
Authentication: Access-Token header
For complete API documentation, visit: https://business.newsbreak.com/business-api-doc/docs/overview/
Troubleshooting
"NEWSBREAK_ACCESS_TOKEN environment variable not set"
Make sure you've created a .env file with your access token or set it in your environment:
export NEWSBREAK_ACCESS_TOKEN=your_token_here"NewsBreak API error: Invalid token"
Your access token may be expired or invalid. Generate a new one from your NewsBreak for Business account.
Rate Limiting
The client includes built-in rate limiting (10 req/s). If you need to adjust this:
client = NewsBreakClient(access_token="...", rate_limit=5) # 5 requests per secondConnection Timeouts
Default timeout is 30 seconds. Adjust if needed:
client = NewsBreakClient(access_token="...", timeout=60.0) # 60 secondsDevelopment
Project Structure
newsbreak-ads-mcp-server/
├── server.py # Main MCP server
├── client.py # API client wrapper
├── models.py # Pydantic models
├── requirements.txt # Python dependencies
├── fastmcp.json # STDIO deployment config
├── fastmcp_cloud.json # Cloud deployment config
├── claude_desktop_config.json # Claude Desktop example
├── run_server.sh # Local run script
├── .env.example # Environment template
├── .env # Your credentials (gitignored)
├── .gitignore
└── README.mdRunning Tests
# Install dev dependencies
pip install pytest pytest-asyncio httpx
# Run tests (when implemented)
pytestContributing
Contributions are welcome! Areas for enhancement:
Add support for asynchronous reports
Implement custom report creation
Add ad set and ad management tools
Create comprehensive test suite
Add more resource templates
Implement webhook support
Add caching layer for frequently accessed data
License
MIT License - feel free to use and modify as needed.
Support
For issues with:
This MCP server: Open an issue in this repository
NewsBreak API: Contact NewsBreak support through your business account
FastMCP framework: Visit https://github.com/jlowin/fastmcp
Links
Built with FastMCP v2.13.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geopopos/newsbreak-ads-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server