Skip to main content
Glama
guru-prasath-j

flutter-ios-bridge-mcp

mac_open_url

Opens a URL, deep link, or universal link in an iOS simulator, enabling verification of link routing and in-app navigation.

Instructions

Open a URL / deep link / universal link in the simulator.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
device_name_or_udidNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It names the operation but does not disclose side effects, prerequisites, whether a matching app must be installed, failure modes, or what happens when the URL is invalid.

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 efficiently structured sentence with the action and object front-loaded. Every word earns its place and there is no filler.

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?

For a 2-parameter tool with no output schema and no annotations, the description is too thin. An agent is left without information about simulator boot requirements, URL format constraints, the optional device parameter, or expected outcomes.

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 clarifies that `url` accepts URLs, deep links, or universal links, but says nothing about `device_name_or_udid`, including how it is used, its default behavior, or when it matters.

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 specific action (open) on a specific resource (URL/deep/universal link) in a specific environment (simulator). It is clear and distinguishable from siblings like mac_boot_simulator or mac_run_on_simulator, though it does not explicitly differentiate itself.

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 alternative simulator/device tools, no prerequisites such as a booted simulator are mentioned, and no exclusions are stated. Usage context is only implied by the tool's name and one-line description.

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