get_ios_bundle_id
Extract the bundle identifier from an iOS app bundle by providing its full path, enabling quick access to app-specific metadata for testing or development purposes.
Instructions
Extracts the bundle identifier from an iOS app bundle (.app). IMPORTANT: You MUST provide the appPath parameter. Example: get_ios_bundle_id({ appPath: '/path/to/your/app.app' }) Note: In some environments, this tool may be prefixed as mcp0_get_ios_bundle_id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appPath | Yes | Path to the iOS .app bundle to extract bundle ID from (full path to the .app directory) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appPath": {
"description": "Path to the iOS .app bundle to extract bundle ID from (full path to the .app directory)",
"type": "string"
}
},
"required": [
"appPath"
],
"type": "object"
}