Fload — Mobile App Analytics via MCP
You have access to Fload MCP tools for mobile app analytics. Use them to help the user understand their app performance, manage reviews, track growth, and optimize their mobile app business.
What Is Fload?
Fload is a SaaS platform for mobile app publishers. It aggregates data from App Store Connect, Google Play Console, ad platforms (Apple Search Ads, Google Ads, Meta, TikTok), Stripe, RevenueCat, and more. It provides AI-powered review management, anomaly detection, growth scoring, and app valuations.
Available Tools
App Data
- list_apps — List all apps in the user's organization. Use first to discover what apps are available.
- get_app_details — Get detailed app info (metadata, valuation, platform). Accepts assetId or bundleId.
Reviews
- get_reviews — Get app reviews with filtering (rating, date range, replied status, platform). Essential for sentiment analysis and support workflows.
Metrics & Analytics
- discover_metrics — Discover what metrics are available for an app. Always call this first before querying data.
- get_metrics — Query metric timeseries (supports 30+ metrics: proceeds, totalDownloads, activeSubs, sessions, crashes, adSpend, etc.). Can query multiple metrics at once and break down by dimension.
- discover_dimensions — Discover available breakdown dimensions (country, platform, app version, campaign) and their values.
AI Agents
- list_agents — List Fload's AI agents (review, monitoring, forecasting, growth, ASO, ads, product, submission review).
- get_agent_details — Get agent configuration for a specific app.
- get_agent_run_history — Get execution history for an agent.
Anomalies
- get_anomalies — Get detected metric anomalies (surges/declines). Filter by severity, type, status, date range.
Ads
- get_ads_performance — Get ad campaign data across Apple Search Ads, Google Ads, Meta, TikTok.
Growth
- get_growth_audit — Comprehensive growth assessment synthesizing reviews, anomalies, valuations, and connector health.
- get_growth_score — Calculated 0-100 growth score with letter grade and factor breakdown.
Forecasting
- get_forecasts — Valuation-based forecasts with trend analysis and projections.
Dashboard
- get_dashboard_overview — Organization-wide portfolio overview with revenue, downloads, and connector health.
Actions
- list_pending_actions — List AI-generated review replies awaiting approval.
- approve_action — Approve a pending review reply (optionally edit first).
- reject_action — Reject and delete a pending review reply.
Common Workflows
"How is my app doing?"
list_apps to find the app
get_growth_score for a quick health check
discover_metrics to see what data exists, then get_metrics for revenue/downloads trends
get_anomalies for any recent issues
"Show me my reviews"
get_reviews with appropriate filters
- For negative reviews: filter by rating 1-2
- For unreplied: filter by replied=false
list_pending_actions to see AI-drafted replies
"What's happening with my ads?"
get_ads_performance — optionally filter by platform
- Combine with
get_metrics for downloads to calculate organic vs paid
"Give me a full business overview"
get_dashboard_overview for portfolio-level metrics
list_apps then get_growth_score for each app
get_anomalies for anything needing attention
"Help me understand this metric change"
get_metrics for the affected metric
get_anomalies to see if Fload detected it
get_growth_audit for broader context
Tips
- Always start with
list_apps if you don't know the user's app IDs
- Use
get_growth_score for a quick pulse check — it synthesizes multiple signals
- The
get_growth_audit tool is the most comprehensive single-call assessment
- Review tools work across platforms (iOS + Android) simultaneously
- Anomaly detection covers: revenue, downloads, active subscriptions, trials, and more
- When presenting data, format numbers nicely (currency for revenue, comma separators for counts)
- Use
discover_metrics before get_metrics to know what metrics are available for an app
- Use
discover_dimensions to find breakdown options (country, platform, etc.) before using dimensional queries
1---2name: fload3description: Use when the user has Fload MCP tools available and asks about mobile app analytics, reviews, growth metrics, ad performance, anomalies, or app store optimization. Teaches effective use of Fload's 18 MCP tools for mobile app publishers.4license: MIT5---67# Fload — Mobile App Analytics via MCP89You have access to Fload MCP tools for mobile app analytics. Use them to help the user understand their app performance, manage reviews, track growth, and optimize their mobile app business.1011## What Is Fload?1213Fload is a SaaS platform for mobile app publishers. It aggregates data from App Store Connect, Google Play Console, ad platforms (Apple Search Ads, Google Ads, Meta, TikTok), Stripe, RevenueCat, and more. It provides AI-powered review management, anomaly detection, growth scoring, and app valuations.1415## Available Tools1617### App Data18- **list_apps** — List all apps in the user's organization. Use first to discover what apps are available.19- **get_app_details** — Get detailed app info (metadata, valuation, platform). Accepts assetId or bundleId.2021### Reviews22- **get_reviews** — Get app reviews with filtering (rating, date range, replied status, platform). Essential for sentiment analysis and support workflows.2324### Metrics & Analytics25- **discover_metrics** — Discover what metrics are available for an app. Always call this first before querying data.26- **get_metrics** — Query metric timeseries (supports 30+ metrics: proceeds, totalDownloads, activeSubs, sessions, crashes, adSpend, etc.). Can query multiple metrics at once and break down by dimension.27- **discover_dimensions** — Discover available breakdown dimensions (country, platform, app version, campaign) and their values.2829### AI Agents30- **list_agents** — List Fload's AI agents (review, monitoring, forecasting, growth, ASO, ads, product, submission review).31- **get_agent_details** — Get agent configuration for a specific app.32- **get_agent_run_history** — Get execution history for an agent.3334### Anomalies35- **get_anomalies** — Get detected metric anomalies (surges/declines). Filter by severity, type, status, date range.3637### Ads38- **get_ads_performance** — Get ad campaign data across Apple Search Ads, Google Ads, Meta, TikTok.3940### Growth41- **get_growth_audit** — Comprehensive growth assessment synthesizing reviews, anomalies, valuations, and connector health.42- **get_growth_score** — Calculated 0-100 growth score with letter grade and factor breakdown.4344### Forecasting45- **get_forecasts** — Valuation-based forecasts with trend analysis and projections.4647### Dashboard48- **get_dashboard_overview** — Organization-wide portfolio overview with revenue, downloads, and connector health.4950### Actions51- **list_pending_actions** — List AI-generated review replies awaiting approval.52- **approve_action** — Approve a pending review reply (optionally edit first).53- **reject_action** — Reject and delete a pending review reply.5455## Common Workflows5657### "How is my app doing?"581. `list_apps` to find the app592. `get_growth_score` for a quick health check603. `discover_metrics` to see what data exists, then `get_metrics` for revenue/downloads trends614. `get_anomalies` for any recent issues6263### "Show me my reviews"641. `get_reviews` with appropriate filters652. For negative reviews: filter by rating 1-2663. For unreplied: filter by replied=false674. `list_pending_actions` to see AI-drafted replies6869### "What's happening with my ads?"701. `get_ads_performance` — optionally filter by platform712. Combine with `get_metrics` for downloads to calculate organic vs paid7273### "Give me a full business overview"741. `get_dashboard_overview` for portfolio-level metrics752. `list_apps` then `get_growth_score` for each app763. `get_anomalies` for anything needing attention7778### "Help me understand this metric change"791. `get_metrics` for the affected metric802. `get_anomalies` to see if Fload detected it813. `get_growth_audit` for broader context8283## Tips8485- Always start with `list_apps` if you don't know the user's app IDs86- Use `get_growth_score` for a quick pulse check — it synthesizes multiple signals87- The `get_growth_audit` tool is the most comprehensive single-call assessment88- Review tools work across platforms (iOS + Android) simultaneously89- Anomaly detection covers: revenue, downloads, active subscriptions, trials, and more90- When presenting data, format numbers nicely (currency for revenue, comma separators for counts)91- Use `discover_metrics` before `get_metrics` to know what metrics are available for an app92- Use `discover_dimensions` to find breakdown options (country, platform, etc.) before using dimensional queries