Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

sim_terminate

Terminate a running app on an iOS simulator by bundle identifier. Stops the app process for testing, debugging, or cleanup.

Instructions

Terminate a running app by bundle identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hostYes
udidNobooted
userYes
key_pathNo
bundle_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

C2.7/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 states the action but does not disclose side effects (e.g., whether the app's state is saved, whether it only affects the booted simulator, or whether it requires the app to be running). The 'booted' default for udid is in the schema, not the description.

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?

The description is a single concise sentence that is easy to parse and front-loads the action. It earns its place but is too brief to cover the missing parameter semantics.

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?

Given 5 parameters, 0% schema coverage, no annotations, and an output schema, the description is incomplete. An agent cannot determine what host/user/key_path mean, what the output contains, or what conditions must hold before calling this tool.

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, but it only mentions bundle_id. The host, user, udid, and key_path parameters are left entirely unexplained, and the description does not clarify how they relate to the termination operation.

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 verb ('Terminate') and resource ('a running app by bundle identifier'), which clearly identifies the tool's core function. It distinguishes from siblings like sim_launch and sim_install by focusing on termination, though it doesn't explicitly name alternatives.

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 provided on when to use this tool versus alternatives like adb_stop_app or sim_shutdown. The description implies usage for stopping a running simulator app, but there is no explicit context, prerequisites, or exclusions.

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