File size: 784 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | {
"name": "browser_tabs",
"description": "List, create, close, or select a browser tab.",
"inputSchema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"list",
"new",
"close",
"select"
],
"description": "Operation to perform"
},
"index": {
"description": "Tab index, used for close/select. If omitted for close, current tab is closed.",
"type": "number"
},
"url": {
"description": "URL to navigate to in the new tab, used for new.",
"type": "string"
}
},
"required": [
"action"
],
"additionalProperties": false
}
} |