Skip to main content
Glama
bidouilles

Mobile Pilot MCP

by bidouilles

dismiss_alert

Dismiss the current alert dialog on an iOS simulator to clear blocking pop-ups. Provide the simulator UDID and resolve modal alerts, allowing automation to continue.

Instructions

Dismiss the current alert dialog.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
device_idYesSimulator UDID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/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 behavioral burden and does not meet it. It does not say what happens when no alert exists (error vs no-op), whether this dismisses via a cancel/negative button, or whether it affects device or app state beyond closing the dialog.

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

Conciseness4/5

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

A single front-loaded sentence with no wasted words and the action stated first. It is arguably under-specified rather than over-long, but structurally it is clean and easy to scan.

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?

An output schema exists so return values need not be explained, and the single required parameter is fully covered. Still, for a state-changing device interaction with zero annotations, the definition omits preconditions and the accept_alert distinction that an agent needs to call it correctly.

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?

Schema description coverage is 100%, so device_id ('Simulator UDID') is already fully documented in the schema. The description adds no meaning about the parameter, so the baseline 3 applies.

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?

States a specific verb (dismiss) and resource (the current alert dialog), which an agent can distinguish from a generic tap. However, it never contrasts with the sibling accept_alert, so the agent must infer whether 'dismiss' cancels the alert versus confirming it.

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?

Usage is only implied by the word 'current', which suggests an alert must already be on screen. There is no explicit when-to-use, no mention of accept_alert or get_alert_text as alternatives, and no note about what to do if no alert is present.

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