1.0.0npm · chrome-mcp · current release
Observed 2026-08-17T08:44:55.259Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
chrome_clickClick on an element using a CSS selectorInput schema{
"type": "object",
"properties": {
"selector": {
"type": "string",
"description": "CSS selector for the element to click"
}
},
"required": [
"selector"
]
} | — | — · — | — |
chrome_close_tabClose the current tabInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_execute_scriptExecute JavaScript in the current page and return the resultInput schema{
"type": "object",
"properties": {
"script": {
"type": "string",
"description": "JavaScript code to execute"
}
},
"required": [
"script"
]
} | — | — · — | — |
chrome_get_contentGet the HTML content of the current pageInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_get_current_urlGet the current URL of the active tabInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_get_titleGet the title of the current pageInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_get_visible_textGet the visible text content of the current pageInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_go_backGo back in browser historyInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_go_forwardGo forward in browser historyInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_list_tabsList all open tabs with their titles and URLsInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_navigateNavigate to a specific URL in ChromeInput schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL to navigate to"
}
},
"required": [
"url"
]
} | — | — · — | — |
chrome_open_new_tabOpen a new tab in Chrome, optionally with a URLInput schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Optional URL to open in the new tab"
}
}
} | — | — · — | — |
chrome_reloadReload the current pageInput schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_screenshotTake a screenshot of the current page (returns base64 encoded PNG)Input schema{
"type": "object",
"properties": {}
} | — | — · — | — |
chrome_typeType text into an input field using a CSS selectorInput schema{
"type": "object",
"properties": {
"selector": {
"type": "string",
"description": "CSS selector for the input element"
},
"text": {
"type": "string",
"description": "Text to type into the input field"
}
},
"required": [
"selector",
"text"
]
} | — | — · — | — |