vision-bridge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VISION_BRIDGE_TESSDATA | No | Path to Tesseract tessdata directory (optional; defaults to tessdata/ next to project) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| captureA | Посмотреть на цель и вернуть её как структуру + текст. target: заголовок окна десктоп-приложения (подстрока, регистронезависимо), либо "browser" для активной страницы открытого браузера; пусто — активное окно на переднем плане. mode: "auto" (сам выбирает: UIA → при бедном результате OCR), либо принудительно "uia" | "ocr" | "browser". Возвращает {ok, elements:[{id,role,name,bbox,...}], text, method_used}. Текстовый
мозг читает |
| actB | Выполнить действие над элементом из capture()/find(). action: click | double_click | type | set_value | focus | read | scroll.
text: для action="type" — что напечатать.
value: для action="set_value" — новое значение поля (заменяет целиком).
Для action="read" текст возвращается в поле |
| findC | Найти один элемент по описанию (имя/значение содержит query). target: окно, либо "browser" для страницы; пусто — активное окно. mode: "auto" | "uia" | "ocr" | "browser". |
| wait_forC | Дождаться появления/готовности элемента (поллинг до timeout_s секунд). |
| browser_openA | Открыть/подключить браузер для незаметной работы. mode="cdp": подключиться к УЖЕ запущенному Chrome по DevTools-протоколу
(cdp_url, по умолчанию http://localhost:9222). Максимальная незаметность,
живые куки, сессии не рвутся. Chrome нужно стартовать заранее с
|
| browser_gotoC | Перейти по URL в открытом браузере. |
| browser_closeB | Закрыть браузерную сессию слоя. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a unique purpose: act performs actions on elements, capture retrieves the view, find locates elements, wait_for waits for conditions, and browser_* tools handle browser lifecycle. No overlap.
Tool names are verb-based, using either single words (act, capture, find) or compound with underscore (browser_close, browser_goto). The browser_ prefix is consistent, but mixing single and compound forms is a minor inconsistency.
Seven tools is ideal for a vision-based automation server, covering all essential operations without being overwhelming or sparse.
The tool set covers the full workflow: opening/closing browsers, navigation, capturing the UI, finding elements, interacting, and waiting. No obvious gaps for standard UI automation tasks.