Rename Simulator
simctl-renameRename iOS simulator devices for clearer organization. Changes only the display name, preserving data and UDID.
Instructions
simctl-rename
Rename iOS simulator devices for better organization.
Overview
Changes the display name of a simulator without affecting its UDID or any data. Useful for organizing and identifying simulators with descriptive names. Quick operation completes instantly with no side effects.
Parameters
Required
deviceId (string): Device UDID to rename (from simctl-list)
newName (string): New display name for the simulator
Returns
Rename status showing old name, new name, confirmation that UDID is unchanged, success indicator, command output, and guidance emphasizing data preservation.
Examples
Rename simulator for clarity
await simctlRenameTool({
deviceId: 'ABC-123-DEF',
newName: 'Production Test Device'
});Organize test devices
await simctlRenameTool({
deviceId: 'TEST-UDID',
newName: 'UI Tests - iPhone 16 Pro'
});Related Tools
simctl-list: Find device UDID to rename
simctl-create: Create new simulator with specific name
simctl-clone: Clone simulator with new name
Notes
UDID remains unchanged - only display name is modified
All data and configuration preserved
Quick operation - completes instantly
New name must be unique - cannot duplicate existing names
Use descriptive names for better organization and identification
Perfect for organizing test devices by purpose or team
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| newName | Yes | ||
| deviceId | Yes |