launch_app
Quickly launch Mac applications by specifying the app name, enabling efficient app management directly from the macOS command line.
Instructions
Launch a Mac application by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appName": {
"type": "string"
}
},
"required": [
"appName"
],
"type": "object"
}