Files
cursor/projects/empty-window/mcps/cursor-ide-browser/tools/browser_highlight.json
2026-05-21 18:16:26 +08:00

29 lines
802 B
JSON

{
"name": "browser_highlight",
"description": "Temporarily highlight an element for visual debugging.",
"arguments": {
"type": "object",
"properties": {
"element": {
"type": "string",
"description": "Human-readable element description used to obtain permission to inspect the element"
},
"ref": {
"type": "string",
"description": "Exact target element reference from the page snapshot"
},
"durationMs": {
"type": "number",
"description": "Highlight duration in milliseconds. Defaults to 2000."
},
"viewId": {
"type": "string",
"description": "Target browser tab ID. If omitted, uses the last interacted tab."
}
},
"required": [
"element",
"ref"
]
}
}