stop_mac_app
Stops a running macOS application by specifying its name or process ID, ensuring precise control over app termination on the XcodeBuildMCP server.
Instructions
Stops a running macOS application. Can stop by app name or process ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appName | No | Name of the application to stop (e.g., "Calculator" or "MyApp") | |
processId | No | Process ID (PID) of the application to stop |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appName": {
"description": "Name of the application to stop (e.g., \"Calculator\" or \"MyApp\")",
"type": "string"
},
"processId": {
"description": "Process ID (PID) of the application to stop",
"type": "number"
}
},
"type": "object"
}