Yandex Browser MCP MCP Server

MCP сервер для управления вкладками Яндекс Браузера

Local serverstdioTypeScript

What is the Yandex Browser MCP MCP server?

Most browser automation work still happens through a UI a human drives. Yandex Browser MCP MCP server moves it into the conversation instead. MCP сервер для управления вкладками Яндекс Браузера.

The short version

MCP (Model Context Protocol) сервер для управления вкладками Яндекс Браузера с расширенной функциональностью.

The tools it exposes

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, metaTags

Getting it running

Setup 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.

How it compares

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.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Yandex Browser MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat 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 })

How to install the Yandex Browser MCP MCP server

{
  "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.

Example prompts to try

  • Use Yandex Browser MCP to connect to browser.
  • Use Yandex Browser MCP to list tabs.
  • Use Yandex Browser MCP to navigate.

Frequently asked questions

It connects Yandex Browser MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (connect_to_browser, list_tabs, navigate, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Yandex Browser MCP directly.