app_open
Open a web application in the default browser using the specified app name. Automatically serves the app if not already active, supporting single-app management.
Instructions
Open an app in the default web browser. If the app is not currently being served,
it will be served first.
Can only open one app at a time.
Args:
app_name: Name of the application to open
Returns:
A dictionary containing the result of the operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"title": "App Name",
"type": "string"
}
},
"required": [
"app_name"
],
"title": "app_openArguments",
"type": "object"
}