MCP Browser Tabs Server

close_tab

Close a specific tab in Google Chrome by window and tab index. When closing multiple tabs, start from the highest index numbers to avoid index shifting. After closing tabs, use get_tabs to confirm the changes.

Input Schema

NameRequiredDescriptionDefault
tabIndexYes
windowIndexYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "tabIndex": { "exclusiveMinimum": 0, "type": "integer" }, "windowIndex": { "exclusiveMinimum": 0, "type": "integer" } }, "required": [ "windowIndex", "tabIndex" ], "type": "object" }

You must be authenticated.

Other Tools