PoC
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"applovin-max": {
"env": {
"APPLOVIN_API_KEY": "your_api_key_here"
},
"command": "/path/to/Applovin-Max-MCP/bootstrap"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides LLM clients like Claude with access to AppLovin Max advertising platform analytics and reporting capabilities.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for Applovin Max MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides LLM clients like Claude with access to AppLovin Max advertising platform analytics and reporting capabilities.
⚠️ IMPORTANT: PROOF OF CONCEPT ONLY
This is a proof-of-concept throwaway project created for demonstration and experimentation purposes. It is NOT production-ready and should NOT be used in production environments without significant additional work.
Known Limitations:
Use at your own risk. This code is provided as-is with no warranties. See the LICENSE file for details.
This Go-based MCP server exposes AppLovin Max API functionality through standardized tools, enabling AI assistants to query mobile ad revenue data, analyze user cohorts, and generate insights from your AppLovin monetization metrics.
git clone <repository-url>
cd Applovin-Max-MCP
go mod download
go build -o bootstrap cmd/main.go
Set your AppLovin API key as an environment variable:
export APPLOVIN_API_KEY="your_api_key_here"
The MCP server communicates via stdio (standard input/output):
./bootstrap
Add the following configuration to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"applovin-max": {
"command": "/path/to/Applovin-Max-MCP/bootstrap",
"env": {
"APPLOVIN_API_KEY": "your_api_key_here"
}
}
}
}
revenue_report)Retrieves aggregated mediation statistics from AppLovin Max.
start (string): Start date in YYYY-MM-DD formatend (string): End date in YYYY-MM-DD formatformat (string): Output format - json or csvColumns (array, default: ["day", "application"]):
day, hour, application, package_name, ad_format, country, platform, network, network_placement, max_placement, max_ad_unit_id, custom_network_name, ad_unit_waterfall_name, device_type, store_id, has_idfa, max_ad_unit_testimpressions, responses, requests, attempts, estimated_revenue, ecpm, fill_rateFilters:
filter_application: Filter by application namefilter_package_name: Filter by package namefilter_ad_type: Filter by ad type (e.g., banner, inter, rewarded)filter_country: Filter by two-letter ISO country codefilter_platform: Filter by platform (android, ios)filter_network: Filter by network namefilter_zone: Filter by zoneSorting:
sort_day: Sort by day (ASC/DESC)sort_hour: Sort by hour (ASC/DESC)