Files
cursor/projects/Users-ray-Documents-project-www-ray/mcps/cursor-ide-browser/tools/browser_lock.json
ray zhou 1bcb6120dd ok
2026-05-29 17:23:17 +08:00

24 lines
702 B
JSON

{
"name": "browser_lock",
"description": "Lock or unlock the browser to control whether the user can interact while you work. Set action to \"lock\" or \"unlock\". When locked, the user can still click \"Take Control\" to unlock if needed.",
"arguments": {
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"lock",
"unlock"
],
"description": "Whether to lock or unlock the browser for user interaction."
},
"viewId": {
"type": "string",
"description": "Target browser tab ID. If omitted, uses the last interacted tab."
}
},
"required": [
"action"
]
}
}