Skip to main content
Glama
guru-prasath-j

flutter-ios-bridge-mcp

device_uninstall_app

Uninstall an iOS app from a connected device using its bundle ID. Removes the app to free space or reset the test environment.

Instructions

Uninstall an app from the connected device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
udidNo
bundle_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. 'Uninstall' implies destructive mutation, but the description does not mention irreversibility, permission requirements, effects on app data, or failure modes if the app is absent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The single sentence is free of fluff and front-loaded with the action, but it is too under-specified to be considered appropriately sized for a tool with zero parameter documentation.

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

Completeness2/5

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

The tool has no annotations and no output schema, so the description must compensate. It fails to explain key operational details like which device is targeted, how bundle_id is used, and what happens after uninstall, making it incomplete for reliable agent invocation.

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

Parameters1/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 explain either parameter (udid, bundle_id). An agent gets no help mapping 'app' to bundle_id or understanding the optional udid's role, leaving the schema titles as the only guidance.

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?

States a specific verb ('Uninstall'), resource ('app'), and context ('connected device'). Clearly distinguishes from siblings like device_install_app and device_list_apps by naming the inverse operation.

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?

Provides no guidance on when to use this tool versus alternatives, nor any prerequisites such as the app being installed or a device being connected. The intended use is only implied by the tool name and sibling set.

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