@fload-ai/mcp 0.3.0 → 0.5.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.
- package/README.md +17 -17
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
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
|
-
|
|
5
|
+
Tools for apps, reviews, analytics, agents, ads, ASO, dashboard, pending actions and chat. OAuth 2.1 for remote connections, API key for scripts and CI.
|
|
6
6
|
|
|
7
7
|
## Two ways to connect
|
|
8
8
|
|
|
@@ -69,19 +69,19 @@ For scripts, CI, headless environments, or anyone who wants a long-lived machine
|
|
|
69
69
|
|
|
70
70
|
## Tools
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
Tools grouped by domain. Full list with annotations + scope requirements at [fload.com/docs/mcp](https://fload.com/docs/mcp).
|
|
73
73
|
|
|
74
|
-
| Domain
|
|
75
|
-
|
|
76
|
-
| Apps
|
|
77
|
-
| Reviews
|
|
78
|
-
| Analytics | `discover_metrics`, `get_metrics`, `discover_dimensions` (30+ metrics, dimensional breakdowns)
|
|
79
|
-
| Agents
|
|
80
|
-
| Ads
|
|
81
|
-
| ASO
|
|
82
|
-
| Dashboard | `get_dashboard_overview`
|
|
83
|
-
| Actions
|
|
84
|
-
| Chat
|
|
74
|
+
| Domain | Tools |
|
|
75
|
+
| --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
76
|
+
| Apps | `list_apps`, `get_app_details` |
|
|
77
|
+
| Reviews | `get_reviews`, `generate_review_reply`, `send_review_reply`, `translate_review` |
|
|
78
|
+
| Analytics | `discover_metrics`, `get_metrics`, `discover_dimensions` (30+ metrics, dimensional breakdowns) |
|
|
79
|
+
| Agents | `list_agents`, `get_agent_details`, `get_agent_run_history`, `trigger_agent_run`, `pause_agent`, `resume_agent`, `get_agent_activity` |
|
|
80
|
+
| Ads | `get_ads_performance` (Apple Search Ads, Google Ads, Meta Ads, TikTok Ads) |
|
|
81
|
+
| ASO | `get_aso_summary`, `get_aso_recommendations`, `get_aso_keywords`, `get_aso_evidence`, `get_aso_experiments`, `get_aso_locale_snapshots`, `trigger_aso_analysis` |
|
|
82
|
+
| Dashboard | `get_dashboard_overview` |
|
|
83
|
+
| Actions | `list_pending_actions`, `approve_action`, `reject_action` |
|
|
84
|
+
| Chat | `list_conversations`, `get_conversation_messages`, `send_chat_message` |
|
|
85
85
|
|
|
86
86
|
Every tool carries an MCP `readOnlyHint` or `destructiveHint` annotation so clients can surface the scope of each action to users before calling.
|
|
87
87
|
|
|
@@ -95,10 +95,10 @@ Every tool carries an MCP `readOnlyHint` or `destructiveHint` annotation so clie
|
|
|
95
95
|
|
|
96
96
|
## Configuration (stdio mode)
|
|
97
97
|
|
|
98
|
-
| Variable
|
|
99
|
-
|
|
100
|
-
| `FLOAD_API_KEY` | Yes (stdio) | —
|
|
101
|
-
| `FLOAD_API_URL` | No
|
|
98
|
+
| Variable | Required | Default | Description |
|
|
99
|
+
| --------------- | ----------- | ----------------------- | ---------------------------------- |
|
|
100
|
+
| `FLOAD_API_KEY` | Yes (stdio) | — | API key, format `fload_sk_...` |
|
|
101
|
+
| `FLOAD_API_URL` | No | `https://api.fload.com` | API URL (override for self-hosted) |
|
|
102
102
|
|
|
103
103
|
## Issues & feedback
|
|
104
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fload-ai/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.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",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"build": "node build.mjs && tsc -p tsconfig.json",
|
|
30
30
|
"dev": "tsx src/index.ts",
|
|
31
31
|
"test": "vitest run",
|
|
32
|
-
"typecheck": "
|
|
33
|
-
"lint": "eslint src/**/*.ts --max-warnings=0"
|
|
32
|
+
"typecheck": "node ../../scripts/tsgo.mjs --noEmit",
|
|
33
|
+
"lint": "oxlint src --max-warnings=0 && eslint \"src/**/*.ts\" --max-warnings=0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|