Skip to main content
Glama
bidouilles

Mobile Pilot MCP

by bidouilles

clear_status_bar

Reset an iOS simulator's status bar by clearing all overrides and returning it to the default appearance. Provide the simulator UDID to restore normal display.

Instructions

Clear all status bar overrides and return to normal.

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

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses the scope of the change (all overrides are removed, state returns to normal), but says nothing about session requirements, whether a device must be booted, or operational caveats.

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?

A single front-loaded sentence with zero filler; the action and its effect are stated immediately.

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?

An output schema exists, so return values need no explanation, and the tool has only one well-documented parameter. It is nearly complete for a simple state-reset tool, with only sibling routing left unstated.

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% and device_id is documented as a Simulator UDID there. The description adds no parameter detail, so the baseline 3 is appropriate when the schema does the lifting.

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 (clear) and resource (status bar overrides) with the effect spelled out ('return to normal'). An agent can distinguish it from set_status_bar via the shared resource, though the description never names that sibling explicitly.

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: the 'clear all overrides' phrasing signals this is the inverse of set_status_bar. There is no explicit when-to-use, when-not-to-use, or named alternative, leaving the agent to infer the routing.

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