activate_tab_by_id
Focus a specific Chrome tab by its unique ID, bringing it to the front for active use. Requires the tab ID from get_tabs output, enabling precise tab control in the MCP Browser Tabs Server.
Instructions
🔥 PREFERRED METHOD: Activate (focus) a specific tab in Google Chrome using its unique tab ID. Brings the tab to the front and makes it active. Extract the Tab ID from [Tab ID: 1234567890] in get_tabs output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tabId | Yes | The exact Tab ID number from [Tab ID: xxxxx] in get_tabs output - NOT the display number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tabId": {
"description": "The exact Tab ID number from [Tab ID: xxxxx] in get_tabs output - NOT the display number",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"tabId"
],
"type": "object"
}