MCP сервер для управления вкладками Яндекс Браузера
Most browser automation work still happens through a UI a human drives. Yandex Browser MCP MCP server moves it into the conversation instead. MCP сервер для управления вкладками Яндекс Браузера.
MCP (Model Context Protocol) сервер для управления вкладками Яндекс Браузера с расширенной функциональностью.
The server publishes 14 tools. What each one is for:
connect_to_browser — Подключиться к уже открытому Яндекс Браузеру typescript connect_to_browser({ port?: number })list_tabs — Получить список всех открытых вкладок typescript list_tabs({})navigate — Перейти по URL в указанной вкладке typescript navigate({ url: string, tabIndex?: number, waitForSelector?: string })click — Кликнуть по элементу typescript click({ selector: string, tabIndex?: number })type — Ввести текст в поле typescript type({ selector: string, text: string, tabIndex?: number, delay?: number })hover — Навести курсор на элемент typescript hover({ selector: string, tabIndex?: number })key_press — Нажать клавишу или комбинацию typescript key_press({ key: string, modifiers?: ['Control' | 'Shift' | 'Alt' | 'Meta'][], tabIndex?: number })scroll — Прокрутить страницу или к элементу typescript scroll({ tabIndex?: number, direction?: 'up' | 'down' | 'left' | 'right', distance?: number, selector?get_text — Получить текстовое содержимое typescript get_text({ selector?: string, tabIndex?: number })get_html — Получить HTML содержимое typescript get_html({ selector?: string, outerHTML?: boolean, tabIndex?: number })get_attributes — Получить атрибуты элемента typescript get_attributes({ selector: string, attributes?: string[], tabIndex?: number })get_page_info — Получить информацию о странице typescript get_page_info({ tabIndex?: number }) // Возвращает: URL, title, description, viewport, metaTagsSetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Yandex Browser MCP's toolset — connect_to_browser, list_tabs, navigate and 11 more — is a fair guide to whether it matches your workflow. It is maintained by T1Trit; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| connect_to_browser | Подключиться к уже открытому Яндекс Браузеру typescript connect_to_browser({ port?: number }) |
| list_tabs | Получить список всех открытых вкладок typescript list_tabs({}) |
| navigate | Перейти по URL в указанной вкладке typescript navigate({ url: string, tabIndex?: number, waitForSelector?: string }) |
| click | Кликнуть по элементу typescript click({ selector: string, tabIndex?: number }) |
| type | Ввести текст в поле typescript type({ selector: string, text: string, tabIndex?: number, delay?: number }) |
| hover | Навести курсор на элемент typescript hover({ selector: string, tabIndex?: number }) |
| key_press | Нажать клавишу или комбинацию typescript key_press({ key: string, modifiers?: ['Control' | 'Shift' | 'Alt' | 'Meta'][], tabIndex?: number }) |
| scroll | Прокрутить страницу или к элементу typescript scroll({ tabIndex?: number, direction?: 'up' | 'down' | 'left' | 'right', distance?: number, selector?: string, smooth?: boolean }) |
| get_text | Получить текстовое содержимое typescript get_text({ selector?: string, tabIndex?: number }) |
| get_html | Получить HTML содержимое typescript get_html({ selector?: string, outerHTML?: boolean, tabIndex?: number }) |
| get_attributes | Получить атрибуты элемента typescript get_attributes({ selector: string, attributes?: string[], tabIndex?: number }) |
| get_page_info | Получить информацию о странице typescript get_page_info({ tabIndex?: number }) // Возвращает: URL, title, description, viewport, metaTags |
| get_console_logs | Получить логи консоли браузера typescript get_console_logs({ tabIndex?: number, type?: 'all' | 'log' | 'warn' | 'error' | 'info', limit?: number }) |
| fill_form | Заполнить форму данными typescript fill_form({ formSelector?: string, fields: { [selector: string]: any }, tabIndex?: number }) |
{
"mcpServers": {
"yandex-browser": {
"command": "node",
"args": ["C:\\Users\\Professional\\Desktop\\yandex-browser-mcp\\build\\index.js"]
}
}
}Configuration as documented by the project. Restart the client after saving.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.