Skip to main content
Glama
OldJii

google-play-vitals-mcp

by OldJii

play_get_release_tracks

Fetch Google Play release tracks and active serving releases to identify production, beta, alpha, and internal versions with release names and versionCodes.

Instructions

[Release Discovery] Fetch Google Play release tracks (PRODUCTION, BETA, ALPHA, INTERNAL) and active serving releases with their release names and versionCodes. Essential for automatically discovering the latest production version.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
package_nameNoAndroid package name (e.g. com.example.app). Optional if GOOGLE_PLAY_PACKAGE_NAME is set.
credentials_pathNoOptional path to GCP credentials JSON.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.1

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It correctly implies a read-only fetch and enumerates the data returned (tracks, serving releases, versionCodes). However, it does not mention auth requirements, credentials behavior, or error/failure cases.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: a category tag, a clear verb-first sentence, and a short use-case sentence. No redundant information is included.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two optional parameters and no output schema, the description adequately explains what the tool returns and why it should be used. It lacks details on edge cases like missing package_name or response shape, but these are not critical for this straightforward operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add meaning beyond the schema; it only reinforces the purpose rather than clarifying parameter formats or behaviors.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch') and identifies the resource (Google Play release tracks, active serving releases, release names, versionCodes). This clearly distinguishes it from sibling tools focused on status, errors, and anomalies, though it does not explicitly name a sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a concrete use case: 'Essential for automatically discovering the latest production version.' It does not mention alternatives or exclusions, but the context is clear enough for an agent to select it when release information is needed.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.