# com.thenextgennexus/playwright-mcp-server (remote · nexgendata-mcp-proxy.steve-corbeil.workers.dev)

Headless browser primitives for AI agents when sites need real JS rendering.

- Trust score: 60/100 (medium)
- Change this week: +8
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `nexgendata-mcp-proxy.steve-corbeil.workers.dev`: 60/100 (this document), [markdown](https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp.md), [page](https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp)

## Channel facts

- Endpoint: `https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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-08-03.

- **Endpoint Security**: 71/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 49/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 584 tokens (~34/item across 17 items; 17 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-thenextgennexus-playwright-mcp-server https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp
```

### Codex

```toml
[mcp_servers.com-thenextgennexus-playwright-mcp-server]
url = "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-thenextgennexus-playwright-mcp-server": {
      "type": "remote",
      "url": "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-thenextgennexus-playwright-mcp-server --url https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-thenextgennexus-playwright-mcp-server:
    url: "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-thenextgennexus-playwright-mcp-server": {
      "type": "http",
      "url": "https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-08-03 (score 60, +1)

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

### 2026-08-01 (score 59, +1)

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

### 2026-07-31 (score 58, +4)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 54, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 53, +1)

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

### 2026-07-27 (score 52, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 51)

First indexed and scored.

## MCP tools (17)

### `navigate` (~37 tokens)

Navigate the browser to a URL. Returns the final URL and page title.

Input parameters:

- `url` (string, required)
- `wait_until` (string)

### `screenshot` (~39 tokens)

Take a PNG screenshot of the current page (or a specific element). Returns base64 PNG.

Input parameters:

- `full_page` (boolean)
- `selector`

### `click` (~43 tokens)

Click an element matched by CSS selector or visible text.

Input parameters:

- `button` (string)
- `double_click` (boolean)
- `selector`
- `text`

### `type_text` (~54 tokens)

Type text into an input/textarea. Optionally clear first or press Enter after.

Input parameters:

- `clear` (boolean)
- `press_enter` (boolean)
- `selector` (string, required)
- `text` (string, required)

### `get_text` (~24 tokens)

Extract visible text from the page or a specific element.

Input parameters:

- `selector`

### `get_html` (~31 tokens)

Return the HTML of the page or a specific element.

Input parameters:

- `outer` (boolean)
- `selector`

### `evaluate` (~32 tokens)

Evaluate JavaScript in the page context. Use `return` for values or an expression.

Input parameters:

- `script` (string, required)

### `select_option` (~40 tokens)

Choose an option from a <select> element by value or visible label.

Input parameters:

- `label`
- `selector` (string, required)
- `value`

### `scroll` (~44 tokens)

Scroll the page (or an element) in the given direction by `amount` pixels.

Input parameters:

- `amount` (integer)
- `direction` (string)
- `selector`

### `wait_for` (~45 tokens)

Wait until a selector reaches a given state (visible|hidden|attached|detached).

Input parameters:

- `selector`
- `state` (string)
- `timeout` (integer)

### `get_links` (~29 tokens)

Collect all anchor hrefs, optionally filtered by regex.

Input parameters:

- `pattern`
- `selector`

### `extract_table` (~30 tokens)

Extract a standard HTML table as a list of row objects keyed by header.

Input parameters:

- `selector` (string)

### `page_pdf` (~39 tokens)

Render the current page as PDF (headless only). Returns base64 PDF.

Input parameters:

- `format_` (string)
- `landscape` (boolean)

### `fill_form` (~39 tokens)

Fill multiple form fields from a list of {selector, value} and optionally submit.

Input parameters:

- `fields` (array, required)
- `submit` (boolean)

### `get_cookies` (~18 tokens)

Return all cookies for the current browser context.

### `set_cookies` (~24 tokens)

Set cookies for the current browser context.

Input parameters:

- `cookies` (array, required)

### `close_browser` (~16 tokens)

Close the underlying browser, freeing resources.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 59
- 2026-08-01: 59
- 2026-07-31: 58
- 2026-07-30: 54
- 2026-07-29: 53
- 2026-07-28: 53
- 2026-07-27: 52
- 2026-07-26: 51

## Links

- Remote endpoint: https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/playwright-mcp-server/mcp
- Authorisation metadata: https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/.well-known/oauth-protected-resource/playwright-mcp-server/mcp
- Website: https://apify.com/nexgendata/playwright-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-thenextgennexus-playwright-mcp-server/playwright-mcp-server-mcp
