open_with_app
Open files or folders directly with a specified application on macOS, streamlining access and improving workflow efficiency.
Instructions
Open a file or folder with a specific application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appName | Yes | ||
filePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appName": {
"type": "string"
},
"filePath": {
"type": "string"
}
},
"required": [
"appName",
"filePath"
],
"type": "object"
}