# CloakBrowser MCP (oci · docker.io/swimmwatch/cloakbrowser-mcp:1.13.0)

Playwright MCP-compatible browser automation bridge for CloakBrowser Chromium.

- Trust score: 49/100 (low)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- npm · `cloakbrowser-mcp`: 49/100, [markdown](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/cloakbrowser-mcp.md), [page](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/cloakbrowser-mcp)
- oci · `docker.io/swimmwatch/cloakbrowser-mcp:1.13.0`: 49/100 (this document), [markdown](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0.md), [page](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0)
- oci · `ghcr.io/swimmwatch/cloakbrowser-mcp:1.13.0`: 49/100, [markdown](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/ghcr-io-swimmwatch-cloakbrowser-mcp-1-13-0.md), [page](https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/ghcr-io-swimmwatch-cloakbrowser-mcp-1-13-0)

## Channel facts

- Registry: `oci`
- Package: `docker.io/swimmwatch/cloakbrowser-mcp:1.13.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-21.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 48/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 15 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 78/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 2141 tokens (~82/item across 26 items; 26 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 53/100
  - Stability observed for 16 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - All 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation.
  - An AI judge read all 27 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the CloakBrowser MCP server?

CloakBrowser MCP runs locally as a container image, launched with docker run --rm -i docker.io/swimmwatch/cloakbrowser-mcp:1.13.0. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add swimmwatch-cloakbrowser-mcp -- docker run --rm -i docker.io/swimmwatch/cloakbrowser-mcp:1.13.0
```

### Cursor

```json
{
  "mcpServers": {
    "swimmwatch-cloakbrowser-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "swimmwatch-cloakbrowser-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add swimmwatch-cloakbrowser-mcp -- docker run --rm -i docker.io/swimmwatch/cloakbrowser-mcp:1.13.0
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "swimmwatch-cloakbrowser-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  swimmwatch-cloakbrowser-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"]
```

### Netclaw

```json
{
  "McpServers": {
    "swimmwatch-cloakbrowser-mcp": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "swimmwatch-cloakbrowser-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/swimmwatch/cloakbrowser-mcp:1.13.0"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-20 (score 49, +1)

No change was recorded against any check on this day. Stability & Change Management went from 47 to 50. That category is still filling its 30-day observation window: 14 days of observed history at the previous scan, 15 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-18 (score 48, +1)

No change was recorded against any check on this day. Stability & Change Management went from 40 to 43. That category is still filling its 30-day observation window: 12 days of observed history at the previous scan, 13 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-16 (score 47, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-14 (score 46, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-13 (score 45, +3)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-05 (score 42)

First indexed and scored.

## MCP tools (26)

### `browser_close` (~12 tokens)

Close the page

### `browser_resize` (~37 tokens)

Resize the browser window

Input parameters:

- `height` (number, required): Height of the browser window
- `width` (number, required): Width of the browser window

### `browser_console_messages` (~95 tokens)

Returns all console messages

Input parameters:

- `all` (boolean): Return all console messages since the beginning of the session, not just since the last navigation. Defaults to false.
- `filename` (string): Filename to save the console messages to. If not provided, messages are returned as text.
- `level` (string, required): Level of the console messages to return. Each level includes the messages of more severe levels. Defaults to "info".

### `browser_handle_dialog` (~44 tokens)

Handle a dialog

Input parameters:

- `accept` (boolean, required): Whether to accept the dialog.
- `promptText` (string): The text of the prompt in case of a prompt dialog.

### `browser_evaluate` (~110 tokens)

Evaluate JavaScript expression on page or element

Input parameters:

- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `filename` (string): Filename to save the result to. If not provided, result is returned as text.
- `function` (string, required): () => { /* code */ } or (element) => { /* code */ } when element is provided
- `target` (string): Exact target element reference from the page snapshot, or a unique element selector

### `browser_file_upload` (~46 tokens)

Upload one or multiple files

Input parameters:

- `paths` (array): The absolute paths to the files to upload. Can be single file or multiple files. If omitted, file chooser is cancelled.

### `browser_drop` (~142 tokens)

Drop files or MIME-typed data onto an element, as if dragged from outside the page. At least one of "paths" or "data" must be provided.

Input parameters:

- `data` (object): Data to drop, as a map of MIME type to string value (e.g. {"text/plain": "hello", "text/uri-list": "https://example.com"}).
- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `paths` (array): Absolute paths to files to drop onto the element.
- `target` (string, required): Exact target element reference from the page snapshot, or a unique element selector

### `browser_find` (~156 tokens)

Search the accessibility snapshot of the current page for text or a regular expression. Returns matching snapshot nodes with a few lines of surrounding context (like search snippets), each shown under its path from the root of the tree, which is cheaper than capturing the whole snapshot when you only need to locate an element and its ref.

Input parameters:

- `regex` (string): Regular expression to search for in the page snapshot. Matching is case-sensitive by default; wrap the pattern in slashes to add flags, e.g. "/error/i" for case-insensitive. Provide either text or re…
- `text` (string): Plain text to search for in the page snapshot (case-insensitive substring match). Provide either text or regex, not both.

### `browser_fill_form` (~25 tokens)

Fill multiple form fields

Input parameters:

- `fields` (array, required): Fields to fill in

### `browser_press_key` (~44 tokens)

Press a key on the keyboard

Input parameters:

- `key` (string, required): Name of the key to press or a character to generate, such as `ArrowLeft` or `a`

### `browser_type` (~118 tokens)

Type text into editable element

Input parameters:

- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `slowly` (boolean): Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.
- `submit` (boolean): Whether to submit entered text (press Enter after)
- `target` (string, required): Exact target element reference from the page snapshot, or a unique element selector
- `text` (string, required): Text to type into the element

### `browser_navigate` (~26 tokens)

Navigate to a URL

Input parameters:

- `url` (string, required): The URL to navigate to

### `browser_navigate_back` (~20 tokens)

Go back to the previous page in the history

### `browser_network_requests` (~106 tokens)

Returns a numbered list of network requests since loading the page. Use browser_network_request with the number to get full details.

Input parameters:

- `filename` (string): Filename to save the network requests to. If not provided, requests are returned as text.
- `filter` (string): Only return requests whose URL matches this regexp (e.g. "/api/.*user").
- `static` (boolean, required): Whether to include successful static resources like images, fonts, scripts, etc. Defaults to false.

### `browser_network_request` (~107 tokens)

Returns full details (headers and body) of a single network request, or a single part if `part` is set. Use the number from browser_network_requests.

Input parameters:

- `filename` (string): Filename to save the result to. If not provided, output is returned as text.
- `index` (integer, required): 1-based index of the request, as printed by browser_network_requests.
- `part` (string): Return only this part of the request. Omit to return full details.

### `browser_run_code_unsafe` (~134 tokens)

Run a Playwright code snippet. Unsafe: executes arbitrary JavaScript in the Playwright server process and is RCE-equivalent.

Input parameters:

- `code` (string): A JavaScript function containing Playwright code to execute. It will be invoked with a single argument, page, which you can use for any page interaction. For example: `async (page) => { await page.ge…
- `filename` (string): Load code from the specified file. If both code and filename are provided, code will be ignored.

### `browser_take_screenshot` (~229 tokens)

Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.

Input parameters:

- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `filename` (string): File name to save the screenshot to. Defaults to `page-{timestamp}.{png|jpeg|webp}` if not specified. Prefer relative file names to stay within the output directory.
- `fullPage` (boolean): When true, takes a screenshot of the full scrollable page, instead of the currently visible viewport. Cannot be used with element screenshots.
- `scale` (string, required): Image resolution scale. "css" produces a screenshot sized in CSS pixels (smaller, consistent across devices). "device" produces a high-resolution screenshot using device pixels (larger, accounts for…
- `target` (string): Exact target element reference from the page snapshot, or a unique element selector
- `type` (string): Image format for the screenshot. If unset, inferred from the filename extension, otherwise png.

### `browser_snapshot` (~115 tokens)

Capture accessibility snapshot of the current page, this is better than screenshot

Input parameters:

- `boxes` (boolean): Include each element's bounding box as [box=x,y,width,height] in the snapshot. Coordinates are viewport-relative, in CSS pixels (Element.getBoundingClientRect)
- `depth` (number): Limit the depth of the snapshot tree
- `filename` (string): Save snapshot to markdown file instead of returning it in the response.
- `target` (string): Exact target element reference from the page snapshot, or a unique element selector

### `browser_click` (~100 tokens)

Perform click on a web page

Input parameters:

- `button` (string): Button to click, defaults to left
- `doubleClick` (boolean): Whether to perform a double click instead of a single click
- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `modifiers` (array): Modifier keys to press
- `target` (string, required): Exact target element reference from the page snapshot, or a unique element selector

### `browser_drag` (~106 tokens)

Perform drag and drop between two elements

Input parameters:

- `endElement` (string): Human-readable target element description used to obtain the permission to interact with the element
- `endTarget` (string, required): Exact target element reference from the page snapshot, or a unique element selector
- `startElement` (string): Human-readable source element description used to obtain the permission to interact with the element
- `startTarget` (string, required): Exact target element reference from the page snapshot, or a unique element selector

### `browser_hover` (~55 tokens)

Hover over element on page

Input parameters:

- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `target` (string, required): Exact target element reference from the page snapshot, or a unique element selector

### `browser_select_option` (~82 tokens)

Select an option in a dropdown

Input parameters:

- `element` (string): Human-readable element description used to obtain permission to interact with the element
- `target` (string, required): Exact target element reference from the page snapshot, or a unique element selector
- `values` (array, required): Array of values to select in the dropdown. This can be a single value or multiple values.

### `browser_tabs` (~73 tokens)

List, create, close, or select a browser tab.

Input parameters:

- `action` (string, required): Operation to perform
- `index` (number): Tab index, used for close/select. If omitted for close, current tab is closed.
- `url` (string): URL to navigate to in the new tab, used for new.

### `browser_wait_for` (~63 tokens)

Wait for text to appear or disappear or a specified time to pass

Input parameters:

- `text` (string): The text to wait for
- `textGone` (string): The text to wait for to disappear
- `time` (number): The time to wait in seconds

### `cloakbrowser_binary_info` (~26 tokens)

CloakBrowser binary info

Return CloakBrowser package, cache, platform, and resolved browser binary information.

### `cloakbrowser_bridge_info` (~25 tokens)

CloakBrowser bridge info

Return runtime metadata for the CloakBrowser bridge over upstream Playwright MCP.

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0#diagnostics

## Score history

- 2026-09-21: 49
- 2026-09-20: 49
- 2026-09-19: 48
- 2026-09-18: 48
- 2026-09-17: 47
- 2026-09-16: 47
- 2026-09-15: 46
- 2026-09-14: 46
- 2026-09-13: 45
- 2026-09-12: 42
- 2026-09-11: 42
- 2026-09-10: 42
- 2026-09-09: 42
- 2026-09-08: 42
- 2026-09-07: 42
- 2026-09-06: 42
- 2026-09-05: 42

## Common questions

### What is the CloakBrowser MCP server?

CloakBrowser MCP is listed in the public MCP registry as io.github.swimmwatch/cloakbrowser-mcp. Playwright MCP-compatible browser automation bridge for CloakBrowser Chromium. This page covers its container image (docker.io/swimmwatch/cloakbrowser-mcp:1.13.0).

### Is the CloakBrowser MCP server safe to use?

CloakBrowser MCP scores 49 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the CloakBrowser MCP server expose?

CloakBrowser MCP exposes 26 tools: browser_close, browser_resize, browser_console_messages, browser_handle_dialog, browser_evaluate, and 21 more. Their descriptions and schemas cost roughly 2,096 tokens of context every time the server is loaded.

### Is the CloakBrowser MCP server still maintained?

CloakBrowser MCP is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the CloakBrowser MCP server under?

CloakBrowser MCP declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/swimmwatch/cloakbrowser-mcp
- Website: https://swimmwatch.github.io/cloakbrowser-mcp/
- Changelog RSS feed: https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0.xml
- Changelog JSON feed: https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0.json
- HTML version of this page: https://verifymcp.io/servers/swimmwatch-cloakbrowser-mcp/docker-io-swimmwatch-cloakbrowser-mcp-1-13-0
