chrome-mcp

Installation
SKILL.md

Quick Usage

Navigate directly (don't use search boxes)

chrome_navigate_page({ url: "https://example.com/search?q=term" })

Extract data with evaluate_script (not screenshots)

chrome_evaluate_script({
  function: `() => {
    const items = document.querySelectorAll('a[href*="/item/"]');
    return Array.from(items).slice(0, 15).map(el => ({
      text: el.textContent?.substring(0, 150) || '',
      link: el.href
    }));
  }`
})
Installs
Repository
smithery/ai
First Seen
chrome-mcp — smithery/ai