Skip to main content
Glama
oddlyspaced

Ultimate Android MCP

by oddlyspaced

install_apk

Install an APK on a connected Android device by providing the APK file path, enabling direct deployment through the MCP server.

Instructions

Installs an APK on the connected Android device. Requires the apk_path parameter, which is the path to the APK file to be installed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apk_pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It says only 'installs an APK,' which signals a mutating operation, but it does not mention side effects, permissions, overwrite behavior, or how success or failure is communicated.

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 compact and front-loaded: it states the action in the first sentence and immediately addresses the sole parameter in the second. There is no filler or redundant restatement.

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

Completeness3/5

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

For a single-parameter tool, the description covers the core action and required argument adequately. But since there is no output schema and no annotations, it omits return behavior, error cases, path-location details, and side effects, leaving moderate gaps.

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 description adds meaning beyond the schema by explaining that apk_path is 'the path to the APK file to be installed.' However, it leaves ambiguity about whether the path refers to a location on the host machine or the device, and does not clarify expected path format.

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 clearly states the action ('Installs an APK') and target ('connected Android device'), making the tool's purpose immediately understandable. It does not explicitly distinguish it from sibling tools, but the verb-resource pair is specific enough.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus alternatives or when not to use it. The description implies installation intent but provides no context about prerequisites, fallback tools, or exclusions.

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