Skip to main content
Glama
guru-prasath-j

flutter-ios-bridge-mcp

ios_remove_info_plist_key

Delete a key from ios/Runner/Info.plist to adjust iOS app settings or remove unused permissions, resolving build or configuration issues.

Instructions

Delete a key from ios/Runner/Info.plist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes
project_pathNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

The description correctly signals a destructive delete operation and names the exact target file, which is useful. However, with no annotations available, it does not disclose behavior like failure on missing keys, irreversibility, or potential side effects on the project.

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?

One short sentence with zero filler. The core action and target are stated directly and front-loaded.

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 tool this is adequate, but it is not fully complete: there is no output schema, no annotations, no parameter descriptions, and the optional project_path behavior is undocumented.

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 only implicitly clarifies the purpose of the required "key" parameter and says nothing about the optional "project_path" parameter, leaving the agent to guess its meaning and default behavior.

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 uses a specific verb, "Delete", and a precise resource, "a key from ios/Runner/Info.plist". It clearly distinguishes this tool from the sibling get and set Info.plist tools.

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 by the action: use this when a key should be removed from the iOS Info.plist. However, it does not explicitly mention alternatives or conditions such as preferring ios_set_info_plist_value for modification or ios_get_info_plist for inspection.

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