/ Каталог / Песочница / mcp
● Сообщество BrowserMCP ⚡ Сразу

mcp

автор BrowserMCP · BrowserMCP/mcp

Browser MCP controls YOUR actual browser via a Chrome extension — your logged-in sessions, your cookies, real fingerprint, no bot detection.

Browser MCP (BrowserMCP/mcp) is an MCP server plus Chrome extension that lets Claude drive the browser you're already using. Because it piggybacks on your real profile, you bypass auth walls, avoid bot fingerprinting, and keep activity local. Different tradeoff than Playwright: less automation-hermetic, more real-user fidelity.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

mcp.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "mcp",
      "command": "npx",
      "args": [
        "-y",
        "mcp"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "mcp"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add mcp -- npx -y mcp

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: mcp

Automate tasks behind your real web logins (Gmail, admin panels)

👤 Productivity power users, ops ⏱ ~15 min intermediate

Когда использовать: A service has no API and you're logged in via SSO — you want Claude to do repetitive work in that tab.

Предварительные требования
  • Chrome + Browser MCP extension installed — docs.browsermcp.io → install extension
Поток
  1. Grant the extension access to the target tab
    Open the admin panel tab, click the Browser MCP extension icon, allow this tab.✓ Скопировано
    → Extension shows 'connected'
  2. Delegate a task
    In the admin panel: find the user with email X, change their plan to 'Pro', take a screenshot of the confirmation.✓ Скопировано
    → Task completes with visual proof

Итог: Repetitive admin actions done via chat, with zero API integration work.

Подводные камни
  • Running actions you didn't mean — this is YOUR real account — Be precise in prompts; the MCP doesn't undo. Test on staging accounts first

Extract data from sites that block headless scrapers

👤 Researchers, analysts ⏱ ~15 min intermediate

Когда использовать: A site you're allowed to read programmatically blocks Playwright/Selenium fingerprints.

Поток
  1. Navigate manually first if needed
    Browser MCP uses your open tabs; navigate to the target, then ask me to read it✓ Скопировано
    → Correct tab is active
  2. Extract structured data
    Read the results table on this page and return as JSON with columns [name, date, value]✓ Скопировано
    → Structured data

Итог: Data you couldn't get with headless tools, obtained via your normal browser session.

Подводные камни
  • Using this to scrape at scale against a site's ToS — Stay within rate limits a human would generate; respect robots.txt
Сочетать с: filesystem

Reproduce a user bug in your real browser

👤 Support engineers ⏱ ~10 min beginner

Когда использовать: A customer reports a bug; you want to replicate their exact click path in your own logged-in session to see.

Поток
  1. Replay the reported steps
    Reproduce this user's flow in the app tab: login → Settings → toggle X → save. Report what happens and any console errors.✓ Скопировано
    → Reproduction result with errors

Итог: Faster support triage than video back-and-forth.

Сочетать с: sentry

Комбинации

Сочетайте с другими MCP — эффект x10

Save scraped data to disk

Extract the table on this page and save as ./exports/{hostname}-{date}.csv.✓ Скопировано
mcp + sentry

Reproduce a user bug tied to a Sentry event

Sentry event XYZ shows breadcrumbs [open, click, save]. Replay them in my current tab and compare the result.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
browser_navigate url: str Move the current tab 0
browser_snapshot See structured page content 0
browser_click ref or selector Click elements 0
browser_type ref, text Fill inputs 0
browser_screenshot fullPage? Capture state 0

Стоимость и лимиты

Во что обходится

Квота API
None — local
Токенов на вызов
Snapshots 500-3000
Деньги
Free
Совет
Prefer snapshot-based refs over screenshots for action — cheaper and more reliable

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: Uses your real browser's cookies — these are as sensitive as your sessions
Исходящий трафик: Tabs connect to whatever you navigate to; no telemetry

Устранение неполадок

Частые ошибки и исправления

Extension shows 'not connected'

Click the extension icon in the target tab and allow; the connection is per-tab

Проверить: Badge shows green
Actions do nothing on an SPA

Take a snapshot first — SPAs often need a wait before elements are interactive

Site detected automation anyway

Rare — disable other extensions that modify navigator properties; restart browser

Альтернативы

mcp в сравнении

АльтернативаКогда использоватьКомпромисс
Playwright MCPYou want hermetic, scriptable, CI-friendly browser automationNo real-session access; more bot-detectable
Puppeteer MCPChromium-only headless controlSame tradeoffs as Playwright, smaller surface

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills