Skip to main content
Glama

android_open_app_settings

Destructive

Opens the Android app settings screen for a specified package, giving quick access to permissions, notifications, and storage options.

Instructions

Open Android application details/settings for an installed package.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.8.1

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false, but the description adds no behavioral context such as navigating away from the current screen, requiring the package to be installed, or potential side effects. It merely restates the action with no additional transparency.

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, front-loaded sentence with no filler. It communicates the core action efficiently and is appropriately sized for a simple tool.

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?

The tool is simple and the description covers the basic action, but it omits information that would help an agent understand behavior around the destructive annotation, what happens on failure, and how this differs from closely related sibling tools. Some completeness is provided by the schema's required parameter, but not enough for full clarity.

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%, so the description must compensate. It only vaguely references 'an installed package,' which adds minimal meaning beyond the parameter name and pattern in the schema. It does not explain the expected format, validation, or requirements for packageName in any useful detail.

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 states a clear verb and resource: 'Open Android application details/settings for an installed package.' This distinguishes it from launching the app itself (android_launch_app) and from reading app information (android_app_details), although it does not explicitly name these siblings.

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 such as android_app_details or android_launch_app. The description simply states the action, leaving the agent to infer the appropriate context.

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