system_quit_app
Quit macOS applications by specifying the application name. Optionally force quit unresponsive apps using the Applescript MCP server integration for system control.
Instructions
[System control and information] Quit an application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force quit if true | |
name | Yes | Application name |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force quit if true",
"type": "boolean"
},
"name": {
"description": "Application name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}