Skip to main content
Glama

android_app_details

Read-onlyIdempotent

Retrieves installed package details—version, launchability, and permission requests—to clarify app behavior and compatibility.

Instructions

Read installed package metadata, launchability, version and requested permissions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.8.1

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral context by specifying exactly what is read: package metadata, launchability, version, and requested permissions.

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?

A single sentence that front-loads the action and lists the returned data categories. There is no filler, and every element helps an agent understand what the tool does.

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 one-parameter read-only tool with rich annotations, the description covers the essential purpose and scope. It does not describe return format or error behavior for missing packages, but the simplicity and safety annotations make this a minor gap.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not mention the packageName parameter at all. The parameter is arguably self-explanatory from its name and the tool name, and the schema includes a pattern, but the description itself adds no parameter-level meaning.

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 description uses a specific verb ('Read') and resource ('installed package metadata'), and enumerates the exact data areas covered: launchability, version, and requested permissions. It clearly distinguishes this from siblings like android_apps (listing apps) or android_launch_app (launching apps).

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 context is clear: this tool is for reading details about a single installed package, and the required packageName parameter reinforces that. It does not explicitly name alternatives or exclusion conditions, but the intended use case is readily inferable from the description.

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