mobile-growth-mcp 2.0.1 → 2.0.2
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 +16 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
# mobile-growth-mcp
|
|
2
2
|
|
|
3
|
-
MCP server for mobile growth & user acquisition.
|
|
3
|
+
MCP server for mobile growth & user acquisition on Meta (Google Ads coming too!). Connect to your LLM (Claude, ChatGPT, Gemini, Codex) to get a curated knowledge base of best practices for each ad network. More networks and insights to come — that's a promise!
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
**Meta Marketing API tools** — pull campaigns, ad sets, ads, and performance insights directly from your Meta ad account. Your access token stays local.
|
|
7
|
+
```bash
|
|
8
|
+
npm init -y && npm install mobile-growth-mcp
|
|
9
|
+
```
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
You'll need an API key — get one from the person who set up your account.
|
|
14
12
|
|
|
15
13
|
## Setup
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
Add this to your MCP client config (Claude Desktop, Cursor, Claude Code, Codex, etc.):
|
|
18
16
|
|
|
19
17
|
```json
|
|
20
18
|
{
|
|
@@ -31,9 +29,17 @@ Get an API key from your admin, then add to your MCP client config:
|
|
|
31
29
|
}
|
|
32
30
|
```
|
|
33
31
|
|
|
34
|
-
- `API_KEY` (required) — authenticates with the knowledge base
|
|
32
|
+
- `API_KEY` (required) — authenticates with the knowledge base. You'll get this when your account is created.
|
|
35
33
|
- `META_ACCESS_TOKEN` (optional) — enables Meta Marketing API tools. Without it, knowledge base tools still work.
|
|
36
34
|
|
|
35
|
+
## What you get
|
|
36
|
+
|
|
37
|
+
**Knowledge base tools** — search, browse, and retrieve expert insights on creative strategy, audience targeting, scaling, bid optimization, and more.
|
|
38
|
+
|
|
39
|
+
**Meta Marketing API tools** — pull campaigns, ad sets, ads, and performance insights directly from your Meta ad account. Your access token stays local.
|
|
40
|
+
|
|
41
|
+
**9 pre-built report prompts** — ad fatigue detection, weekly performance snapshots, creative health categorization, placement audits, audience composition, architecture reviews, campaign comparisons, attribution analysis, and full account audits.
|
|
42
|
+
|
|
37
43
|
## Tools
|
|
38
44
|
|
|
39
45
|
| Tool | Description |
|
package/package.json
CHANGED