Tools
Tabs
Open, list, focus and close tabs in the real Chrome window.
Generated from @mehmoodqureshi/chrome-mcp 0.9.11. 4 tools.
tabs_list
List open browser tabs.
No arguments.
{
"tool": "tabs_list",
"args": {}
}tab_new
Open a NEW tab (optionally at a URL) and focus it. Prefer this over navigate when the user says "open"/"go to" a site — navigate REPLACES the current tab. Pass active:false to open in the background (used by parallel batches).
| Argument | Type | Required | Description |
|---|---|---|---|
url | string | no | |
active | boolean | no |
{
"tool": "tab_new",
"args": {
"url": "<url>"
}
}tab_select
Make a tab active by tabId.
| Argument | Type | Required | Description |
|---|---|---|---|
tabId | string | yes |
{
"tool": "tab_select",
"args": {
"tabId": "<tabId>"
}
}tab_close
Close a tab by tabId.
| Argument | Type | Required | Description |
|---|---|---|---|
tabId | string | yes |
{
"tool": "tab_close",
"args": {
"tabId": "<tabId>"
}
}