@fload-ai/mcp 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @fload-ai/mcp
2
2
 
3
- MCP server for [Fload](https://fload.com) — connects any MCP-compatible AI client (Claude, ChatGPT, Cursor, VS Code, Cline) to your mobile app's App Store Connect and Google Play Console data, App Store and Google Play reviews, ad campaigns, anomalies, and ASO data.
3
+ MCP server for [Fload](https://fload.com) — connects any MCP-compatible AI client (Claude, ChatGPT, Cursor, VS Code, Cline) to your mobile app's App Store Connect and Google Play Console data, App Store and Google Play reviews, ad campaigns, and ASO data.
4
4
 
5
- 37 tools across 10 domains. OAuth 2.1 for remote connections, API key for scripts and CI.
5
+ 30 tools across 9 domains. OAuth 2.1 for remote connections, API key for scripts and CI.
6
6
 
7
7
  ## Two ways to connect
8
8
 
@@ -66,11 +66,10 @@ For scripts, CI, headless environments, or anyone who wants a long-lived machine
66
66
  - "Draft replies to my last 5 one-star reviews in my brand voice, then approve the good ones."
67
67
  - "What's my ROAS across all ad platforms this week?"
68
68
  - "Audit my ASO for my top-grossing app and suggest title changes."
69
- - "List anomalies across my portfolio this week — acknowledge the ones on my dummy app."
70
69
 
71
70
  ## Tools
72
71
 
73
- 37 tools grouped by domain. Full list with annotations + scope requirements at [fload.com/docs/mcp](https://fload.com/docs/mcp).
72
+ 30 tools grouped by domain. Full list with annotations + scope requirements at [fload.com/docs/mcp](https://fload.com/docs/mcp).
74
73
 
75
74
  | Domain | Tools |
76
75
  |---|---|
@@ -78,7 +77,6 @@ For scripts, CI, headless environments, or anyone who wants a long-lived machine
78
77
  | Reviews | `get_reviews`, `generate_review_reply`, `send_review_reply`, `translate_review` |
79
78
  | Analytics | `discover_metrics`, `get_metrics`, `discover_dimensions` (30+ metrics, dimensional breakdowns) |
80
79
  | Agents | `list_agents`, `get_agent_details`, `get_agent_run_history`, `trigger_agent_run`, `pause_agent`, `resume_agent`, `get_agent_activity` |
81
- | Anomalies | `get_anomalies`, `get_anomaly_detail`, `acknowledge_anomaly`, `dismiss_anomaly` |
82
80
  | Ads | `get_ads_performance` (Apple Search Ads, Google Ads, Meta Ads, TikTok Ads) |
83
81
  | ASO | `get_aso_summary`, `get_aso_recommendations`, `get_aso_keywords`, `get_aso_experiments`, `get_aso_locale_snapshots`, `trigger_aso_analysis` |
84
82
  | Dashboard | `get_dashboard_overview` |
@@ -89,10 +87,10 @@ Every tool carries an MCP `readOnlyHint` or `destructiveHint` annotation so clie
89
87
 
90
88
  ## OAuth scopes (remote only)
91
89
 
92
- 16 scopes. Agents request the minimum they need; users approve per-scope on the consent screen and can revoke from [platform.fload.com/settings/connected-apps](https://platform.fload.com/settings/connected-apps).
90
+ 15 scopes. Agents request the minimum they need; users approve per-scope on the consent screen and can revoke from [platform.fload.com/settings/connected-apps](https://platform.fload.com/settings/connected-apps).
93
91
 
94
92
  - **OIDC identity:** `openid`, `email`, `profile`, `offline_access`
95
- - **Reads:** `read:apps`, `read:reviews`, `read:analytics`, `read:anomalies`, `read:ads`, `read:aso`, `read:agents`
93
+ - **Reads:** `read:apps`, `read:reviews`, `read:analytics`, `read:ads`, `read:aso`, `read:agents`
96
94
  - **Writes:** `write:reviews`, `write:ads`, `write:aso`, `write:agents`, `write:chat`
97
95
 
98
96
  ## Configuration (stdio mode)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fload-ai/mcp",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "description": "Fload MCP server for AI agents - exposes mobile app analytics, reviews, and growth insights",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",