Skip to main content
Glama
abd3lraouf-studios

Google Play Console MCP

Get Vitals Freshness

get_vitals_freshness

Determine data freshness for Android vitals metrics so you can avoid treating incomplete periods as improvements. Use this before relying on vitals numbers.

Instructions

Report how current each vitals metric set's data is.

Call this before acting on a vitals number. Play data lags reality by hours to days, so a query covering "the last 7 days" can silently return five — and the absent days look like an improvement rather than a gap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
metric_setNoShort metric set key (e.g., crash_rate), or omit for all sets
package_nameYesApp package name (e.g., com.example.myapp)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It reveals a non-obvious behavioral trait: freshness is not instantaneous and missing days can masquerade as improvements. It does not describe output formatting, but an output schema exists to cover that.

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?

Three sentences total: a definition, a when-to-call instruction, and a concrete stale-data warning. Every sentence earns its place and the key guidance is front-loaded.

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

Completeness5/5

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

With a 2-parameter schema, an output schema, and no annotations, the description supplies the missing judgment: use it before reading vitals numbers. The required package_name and optional metric_set are documented in the schema, so nothing needed to invoke it correctly is missing.

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?

The input schema already covers both parameters: package_name is required and metric_set is optional with a default of null. The description only refers to metric sets generically and adds no format, default, or null-semantics detail beyond the schema, so the baseline of 3 applies.

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

Purpose5/5

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

The first sentence states a specific verb and resource: 'Report how current each vitals metric set's data is.' This clearly distinguishes the tool from value-returning siblings like query_vitals by focusing on data freshness rather than the metrics themselves.

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?

The description explicitly says 'Call this before acting on a vitals number' and explains why: Play data lags reality by hours to days and can silently omit recent days. It does not name alternative tools or spell out when not to use it, so it stops short of a 5.

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

Deploy Server

Other Tools