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

android-vitals-mcp

v1.4.3

Published

Android Vitals for AI agents: run npx android-vitals-mcp setup to connect your Play Console, then npx android-vitals-install-skills to get crash/ANR/rendering/startup playbooks in every AI CLI.

Downloads

143

Readme

android-vitals-mcp

Android Vitals for AI agents. Connect your Google Play Console and get four guided skills that automatically fetch crash, ANR, slow-rendering, and startup metrics, interpret thresholds, and walk through Android-specific remediations.

Prerequisites

  1. Google Cloud Project linked to your Google Play Console.
  2. Service Account JSON key with the https://www.googleapis.com/auth/playdeveloperreporting scope.
  3. Play Console permission: the Service Account email must be invited to Google Play Console with at least "View app information (read-only)".
  4. Node.js ≥ 18.

Quick start

Step 1 — connect your Play Console:

npx android-vitals-mcp setup

Prompts for your Service Account key path and Android package name, then writes the MCP server config into every detected AI CLI (~/.claude.json, ~/.gemini/settings.json, ~/.cursor/mcp.json, ~/.kiro/settings/mcp.json).

Options:

npx android-vitals-mcp setup --dry-run        # preview without writing
npx android-vitals-mcp setup --cli claude     # limit to one CLI

Step 2 — install the skill playbooks:

npx android-vitals-install-skills

Drops four SKILL.md playbooks into every detected AI CLI's skills/ directory (Claude Code, Gemini CLI, Codex, Copilot, Cursor, Cline, Kiro, Antigravity, Amp, OpenCode, and ~/.agents/skills/).

Options:

npx android-vitals-install-skills --dry-run        # preview changes
npx android-vitals-install-skills --force          # overwrite without .bak files
npx android-vitals-install-skills --cli claude     # only Claude Code

Step 3 — restart your AI CLI, then ask:

"improve my Android crash rate"


What you get

Skills

Each skill auto-activates on relevant keywords, fetches live metrics from Google Play, interprets Google's "core technical quality" thresholds, and walks your agent through Android-specific remediations.

| Skill | Triggers on | Metrics fetched | |---|---|---| | improve-android-crash-rate | "crash rate", "improve crashes", "crash-free users" | crash rate, error report count, distinct users | | improve-android-anr | "ANR", "app not responding", "main-thread freeze" | ANR rate, 7-day user-weighted ANR rate | | improve-android-slow-rendering | "jank", "slow rendering", "dropped frames" | slow rendering rates at 20 fps and 30 fps | | improve-android-startup-time | "cold start", "TTID", "improve startup" | slow start rate by startType (COLD / WARM / HOT) |

Available MCP tools

All tools accept an optional days argument (default 7) and are called automatically by the skills above.

| Tool | Returns | |---|---| | get_crash_metrics | crash rate, error report count, distinct users affected | | get_anr_metrics | ANR rate, 7-day user-weighted ANR rate, distinct users | | get_slow_rendering_metrics | slow rendering rates at the 20 fps and 30 fps thresholds | | get_startup_time_metrics | slow start rate, dimensioned by startType |


Idempotency

Both commands are safe to re-run:

  • android-vitals-mcp-setup: overwrites only the "android-vitals" key under mcpServers; all other config in the file is preserved.
  • android-vitals-install-skills: no-op if the skill is already byte-identical (= unchanged); otherwise renames the old file to .bak before writing (↻ updated). Pass --force to skip the backup.