npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mobile-growth-mcp

v2.2.1

Published

MCP server for mobile growth & UA knowledge base — campaign optimization, creative strategy, and subscription app insights

Readme

mobile-growth-mcp

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!

Install

npm init -y && npm install mobile-growth-mcp

You'll need an API key — get one from the person who set up your account.

Setup

There are three ways to provide your API key and Meta token. The server checks them in this order:

Option 1: CLI arguments

Pass keys directly in the args array. Works with every MCP client.

{
  "mcpServers": {
    "mobile-growth": {
      "command": "npx",
      "args": ["-y", "mobile-growth-mcp", "--api-key=me_your-api-key", "--meta-token=your-meta-access-token"]
    }
  }
}

Option 2: Environment variables

Use the env block in your MCP client config.

{
  "mcpServers": {
    "mobile-growth": {
      "command": "npx",
      "args": ["-y", "mobile-growth-mcp"],
      "env": {
        "API_KEY": "me_your-api-key",
        "META_ACCESS_TOKEN": "your-meta-access-token"
      }
    }
  }
}

Option 3: .env file

Create a .env file in your working directory:

API_KEY=me_your-api-key
META_ACCESS_TOKEN=your-meta-access-token

Keys

  • API_KEY — authenticates with the knowledge base. Without it, the server still starts but only Meta tools are available. Call the connection_status tool to see what's connected.
  • META_ACCESS_TOKEN (optional) — enables Meta Marketing API tools. Without it, knowledge base tools still work.

What you get

Knowledge base tools — search, browse, and retrieve expert insights on creative strategy, audience targeting, scaling, bid optimization, and more.

Meta Marketing API tools — pull campaigns, ad sets, ads, and performance insights directly from your Meta ad account. Your access token stays local.

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.

Tools

| Tool | Description | |------|-------------| | connection_status | Check KB and Meta API connection status; shows how to fix issues | | search_insights | Semantic + keyword hybrid search across curated insights | | get_insight | Full content of a specific insight by slug or ID | | get_meta_campaigns | List campaigns with objectives, budgets, bid strategies | | get_meta_adsets | List ad sets with targeting and optimization goals | | get_meta_ads | List ads with creative info | | get_meta_insights | Performance data with breakdowns, date ranges, levels | | get_meta_ad_fatigue | Built-in creative fatigue detection report |

Report prompts

Each prompt takes an ad_account_id and walks the LLM through a structured analysis:

  • ad-fatigue-report — frequency, CTR decline, CPA trends
  • weekly-performance — week-over-week health with Kast diagnostic framework
  • creative-performance — categorize ads as scaling/promising/contributing/fatiguing/dead weight
  • audience-composition — age x gender CPA heatmap
  • architecture-review — campaign structure evaluation
  • audit-meta-account — comprehensive account audit (6+ API calls)
  • campaign-comparison — side-by-side campaign analysis
  • placement-audit — placement waste quantification
  • attribution-analysis — conversion quality validation

License

MIT