Skip to main content
Glama
swamiabhishek45

Android Control MCP Server

android_device_info

Retrieve detailed specs of a connected Android device, including model, OS version, SDK level, and screen resolution, to aid in automation decisions.

Instructions

Get detailed information about the connected Android device, including device ID, model, manufacturer, Android OS version, SDK level, and screen resolution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceIdNoOptional target Android device ID/serial. If omitted, auto-selects the connected device.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/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 states the operation is 'get' which clearly implies a read-only action, but it does not explicitly say it is non-destructive or describe behavior on errors (e.g., if no device is connected). While the intent is clear, it lacks explicit safety/error context.

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 a single, focused sentence with no redundant words. It front-loads the purpose and enumerates the returned fields, making it easy to scan.

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 one optional parameter and no output schema, the description covers the returned information and the connection prerequisite. It does not mention error handling or output format, but these are minor for a straightforward info-gathering tool, so slightly above average.

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 schema has 100% parameter coverage, fully describing the optional `deviceId` parameter including its effect when omitted. The description adds no additional meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

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 clearly states the action (get) and resource (detailed information about the Android device), and enumerates the specific fields returned (device ID, model, manufacturer, OS version, SDK level, screen resolution). This distinguishes it from sibling tools, which are all actions or app-specific queries.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention any prerequisites, typical use cases, or situations where it would be inappropriate. Since siblings are all actions, the distinction is implied but not explicit, so below average.

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