Skip to main content
Glama

XcodeBuildMCP

get_mac_app_path_proj

Retrieve the app bundle path for a macOS application by specifying the project file and scheme. Requires projectPath and scheme inputs for accurate results.

Instructions

Gets the app bundle path for a macOS application using a project file. IMPORTANT: Requires projectPath and scheme. Example: get_mac_app_path_proj({ projectPath: '/path/to/project.xcodeproj', scheme: 'MyScheme' })

Input Schema

NameRequiredDescriptionDefault
archNoArchitecture to build for (arm64 or x86_64). For macOS only.
configurationNoBuild configuration (Debug, Release, etc.)
derivedDataPathNoPath to derived data directory
extraArgsNoAdditional arguments to pass to xcodebuild
projectPathYesPath to the .xcodeproj file
schemeYesThe scheme to use

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "arch": { "description": "Architecture to build for (arm64 or x86_64). For macOS only.", "enum": [ "arm64", "x86_64" ], "type": "string" }, "configuration": { "description": "Build configuration (Debug, Release, etc.)", "type": "string" }, "derivedDataPath": { "description": "Path to derived data directory", "type": "string" }, "extraArgs": { "description": "Additional arguments to pass to xcodebuild", "items": { "type": "string" }, "type": "array" }, "projectPath": { "description": "Path to the .xcodeproj file", "type": "string" }, "scheme": { "description": "The scheme to use", "type": "string" } }, "required": [ "projectPath", "scheme" ], "type": "object" }
Install Server

Other Tools from XcodeBuildMCP

Related Tools

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cameroncooke/XcodeBuildMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server