Skip to main content
Glama
mobile-next

Mobile Next MCP Server

Official
by mobile-next

Uninstall App

mobile_uninstall_app
Destructive

Uninstall an app from a specified mobile device by providing the device identifier and the app's bundle ID or package name.

Instructions

Uninstall an app from mobile device

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceYesThe device identifier to use. Use mobile_list_available_devices to find which devices are available to you.
bundle_idYesBundle identifier (iOS) or package name (Android) of the app to be uninstalled

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true, so the destructive nature is covered. The description adds nothing beyond that – no mention of irreversibility, prerequisites (e.g., app must be installed), or potential failure modes. With no additional behavioral context, the description does not go beyond what annotations already convey.

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 concise sentence with no redundant wording. It is front-loaded with the action and resource, making it immediately clear what the tool does.

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 simple two-parameter destructive operation, the description is minimally adequate. However, it does not mention what happens after uninstalling (e.g., success/failure response) or any caveats like whether the operation is reversible. Given the annotations cover destructiveness, the missing details are minor but still leave room for improvement.

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 provides complete descriptions for both parameters (device and bundle_id), including how to find the device. Since schema_description_coverage is 100%, the description adds no extra parameter information. The baseline of 3 applies because the schema does the heavy lifting.

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 'Uninstall an app from mobile device' clearly identifies the specific action (uninstall) and resource (app on mobile device). It distinguishes from sibling tools like mobile_install_app and mobile_terminate_app, so an agent can easily tell what this does.

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

Usage Guidelines3/5

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

The usage context is implied – you uninstall when you need to remove an app. However, there is no explicit guidance on when not to use it or alternatives to consider, such as mobile_terminate_app for stopping a running app. The schema's parameter hint about using mobile_list_available_devices is helpful but not usage guidance for this tool itself.

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