- Kochava For Advertisers - Official MCP Server
Kochava For Advertisers - Official MCP Server
The Kochava for Advertisers MCP Connector is an MCP-compliant interface that exposes ~30 tools covering:
- Analytics
- Attribution
- Campaign management
- Tracker management
- Reporting (SQL + async)
- Reference data
- Account setup
It effectively turns Kochava into a programmable marketing + attribution platform.
Content
Kochava for Advertisers MCP Connector
A comprehensive connector for Kochava’s mobile measurement and attribution platform, enabling programmatic access to analytics, attribution, campaign management, and reporting across your entire app portfolio.
🚀 What You Can Do
📊 Advanced Analytics
- Analyze user behavior with event tracking, retention, LTV, and funnel analysis
- Build custom reports with flexible dimensions and metrics
- Run cross-app and cohort-based analysis at scale
🎯 Campaign Management
- Create, update, and manage campaigns programmatically
- Configure budgets, targeting, and scheduling
- Run A/B tests using campaign segments (tiers)
🔗 Attribution & Tracker Management
- Generate and manage attribution links for any media partner
- Support both acquisition and reengagement campaigns
- Update and maintain trackers at scale with built-in validation
📈 Performance Monitoring
- Track clicks, installs, revenue, and conversion rates
- Analyze attribution breakdowns and campaign ROI
- Monitor traffic quality and fraud indicators
📝 Custom Reporting (SQL)
- Execute custom queries using standard or legacy SQL
- Run large reports asynchronously
- Retrieve and manage saved queries
🌐 Reference Data Access
- Browse 5,000+ media partners (Facebook, Google, TikTok, etc.)
- Access event catalogs, agency networks, and currency data
⚡ Key Features
- Parallel Execution: Query up to 50 apps simultaneously
- Programmable Workflows: Replace manual dashboards with automation
- Flexible Filtering: Multi-dimensional segmentation across all analytics tools
- Confirmation Safeguards: Prevent accidental destructive actions
- Multi-Cohort Analysis: Analyze attributed, organic, and all-user segments
🧠 Why It Matters
This connector transforms Kochava from a dashboard into a programmable growth engine.
- Automate reporting and campaign management
- Scale attribution across large app portfolios
- Integrate marketing data into internal tools and AI agents
- Reduce manual work and improve decision speed
🧩 Best For
- Performance marketing teams
- Mobile growth and UA teams
- Agencies managing multiple clients
- Data and analytics teams building custom pipelines
- AI agents automating marketing workflows
📦 Coverage
- 30+ tools across analytics, attribution, campaign management, and reporting
- Supports SQL queries, cohort analysis, and real-time performance tracking
- Integrates with 5,000+ media partners and ad networks
Server Config
{
"name": "kochava-for-advertisers",
"display_name": "Kochava for Advertisers MCP Connector",
"version": "1.0.0",
"protocol": "mcp",
"vendor": "Kochava Inc.",
"description": "Comprehensive MCP connector for Kochava mobile measurement and attribution platform. Provides analytics, attribution, campaign management, tracker management, reporting, and fraud detection capabilities.",
"tools": [
{
"name": "get_all_apps",
"category": "app_management",
"description": "Fetch all non-deleted apps grouped by account.",
"input_schema": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "get_app_dimensions",
"category": "analytics",
"description": "Retrieve available dimensions for specified apps.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"auth_key": {
"type": "string"
}
},
"required": [
"account_id",
"app_ids"
]
}
},
{
"name": "run_search_query",
"category": "analytics",
"description": "Retrieve frequent values for a dimension within a date range.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"dimension_name": {
"type": "string"
},
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"account_id",
"app_ids",
"dimension_name",
"start",
"end"
]
}
},
{
"name": "get_event_detail",
"category": "analytics",
"description": "Get detailed event metrics over time.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"event_name": {
"type": "string"
},
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"account_id",
"app_ids",
"event_name",
"start",
"end"
]
}
},
{
"name": "get_LTV_details",
"category": "analytics",
"description": "Get lifetime value metrics over time.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"account_id",
"app_ids",
"start",
"end"
]
}
},
{
"name": "get_retention_overlay",
"category": "analytics",
"description": "Retrieve retention metrics post-install.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"account_id",
"app_ids"
]
}
},
{
"name": "get_funnel_data",
"category": "analytics",
"description": "Analyze funnel progression and drop-offs.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"funnel": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"account_id",
"app_ids",
"funnel"
]
}
},
{
"name": "get_explorer_data",
"category": "analytics",
"description": "Retrieve custom analytics with flexible dimensions and metrics.",
"input_schema": {
"type": "object",
"properties": {
"account_id": {
"type": "string"
},
"app_ids": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"account_id",
"app_ids"
]
}
},
{
"name": "execute_report_query",
"category": "reporting",
"description": "Execute async SQL query.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"query": {
"type": "string"
}
},
"required": [
"app_id",
"query"
]
}
},
{
"name": "get_query_results",
"category": "reporting",
"description": "Retrieve results of async query.",
"input_schema": {
"type": "object",
"properties": {
"job_id": {
"type": "string"
},
"app_id": {
"type": "string"
}
},
"required": [
"job_id",
"app_id"
]
}
},
{
"name": "kochava_list_campaigns",
"category": "campaign_management",
"description": "List campaigns for an app.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
}
},
"required": [
"app_id"
]
}
},
{
"name": "kochava_create_campaign",
"category": "campaign_management",
"description": "Create a new campaign.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"name": {
"type": "string"
},
"destination_url": {
"type": "string"
}
},
"required": [
"app_id",
"name",
"destination_url"
]
}
},
{
"name": "kochava_update_campaign",
"category": "campaign_management",
"description": "Update existing campaign.",
"input_schema": {
"type": "object",
"properties": {
"campaign_id": {
"type": "string"
}
},
"required": [
"campaign_id"
]
}
},
{
"name": "kochava_list_trackers",
"category": "tracker_management",
"description": "List attribution trackers.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
}
},
"required": [
"app_id"
]
}
},
{
"name": "kochava_create_tracker",
"category": "tracker_management",
"description": "Create attribution tracker.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"name": {
"type": "string"
},
"campaign_id": {
"type": "string"
}
},
"required": [
"app_id",
"name",
"campaign_id"
]
}
},
{
"name": "kochava_update_tracker",
"category": "tracker_management",
"description": "Update tracker.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"tracker_id": {
"type": "string"
}
},
"required": [
"app_id",
"tracker_id"
]
}
},
{
"name": "kochava_delete_tracker",
"category": "tracker_management",
"description": "Delete tracker.",
"input_schema": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"tracker_id": {
"type": "string"
}
},
"required": [
"app_id",
"tracker_id"
]
}
}
],
"capabilities": {
"analytics": true,
"attribution": true,
"campaign_management": true,
"tracker_management": true,
"reporting": true,
"fraud_detection": true,
"parallel_execution": {
"enabled": true,
"max_batch_size": 50
}
}
}Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
ChatWiseThe second fastest AI chatbot™
WindsurfThe new purpose-built IDE to harness magic
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题;
Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Amap Maps高德地图官方 MCP Server
CursorThe AI Code Editor
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
DeepChatYour AI Partner on Desktop
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Serper MCP ServerA Serper MCP Server
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Tavily Mcp
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Playwright McpPlaywright MCP server
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.