# Pagewatch (remote · pagelens.dev)

Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.

- Trust score: 23/100 (low)
- Change this week: −32
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `pagelens.dev`: 23/100 (this document), [markdown](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens.md), [page](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens)
- npm · `pagewatch-mcp`: 63/100, [markdown](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagewatch-mcp.md), [page](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagewatch-mcp)
- pypi · `pagewatch-mcp`: 39/100, [markdown](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagewatch-mcp-2.md), [page](https://verifymcp.io/servers/dev-pagelens-pagewatch/pagewatch-mcp-2)

## Channel facts

- Endpoint: `https://pagelens.dev/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.2.3`

## 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**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but the endpoint redirected instead of responding directly.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http dev-pagelens-pagewatch https://pagelens.dev/mcp
```

### Codex

```toml
[mcp_servers.dev-pagelens-pagewatch]
url = "https://pagelens.dev/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-pagelens-pagewatch": {
      "type": "remote",
      "url": "https://pagelens.dev/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dev-pagelens-pagewatch --url https://pagelens.dev/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  dev-pagelens-pagewatch:
    url: "https://pagelens.dev/mcp"
```

### Other

```json
{
  "mcpServers": {
    "dev-pagelens-pagewatch": {
      "type": "http",
      "url": "https://pagelens.dev/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-07-31 (score 23, +9)

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

### 2026-07-30 (score 14, −43)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Stability: 0.10 → unverified
- [security regression] Transport: pass → fail
- [security] Authorization: Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-29 (score 57, +1)

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

### 2026-07-28 (score 56, +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 55, 0)

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

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

First indexed and scored.

## MCP tools (5)

### `read_page` (~181 tokens)

Load a web page in a real browser and return its main content as clean
        markdown, with the title, canonical url and basic metadata. Handles
        javascript-rendered pages. Respects robots.txt and refuses sites that block
        automation rather than trying to defeat them. Pass api_key if you already have
        a pagewatch key, otherwise a free trial key is created for you on the first
        call and returned in the response.

        url: the page to read (http or https).
        api_key: an existing pagewatch bearer token, optional.
        wait_for_selector: css selector to wait for before reading, optional.
        scroll: scroll the page to trigger lazy-loaded content, optional.

Input parameters:

- `api_key`
- `scroll` (boolean)
- `url` (string, required)
- `wait_for_selector`

### `screenshot` (~209 tokens)

Take a screenshot of a web page rendered in a real browser and return it as
        base64 image data (png by default, jpeg optional), with the final url and
        pixel size. Consent overlays are hidden so the shot shows the page. Respects
        robots.txt. Pass api_key if you have a pagewatch key, otherwise a free trial
        key is created for you and returned.

        url: the page to capture.
        api_key: an existing pagewatch bearer token, optional.
        full_page: capture the entire scrollable page, not just the viewport.
        width, height: viewport size in pixels.
        format: png or jpeg.
        wait_for_selector: css selector to wait for before capturing, optional.

Input parameters:

- `api_key`
- `format` (string)
- `full_page` (boolean)
- `height` (integer)
- `url` (string, required)
- `wait_for_selector`
- `width` (integer)

### `pdf` (~166 tokens)

Render a web page (by url) or raw html into a pdf and return it as base64
        pdf data. Provide exactly one of url or html. Respects robots.txt for url
        input. Pass api_key if you have a pagewatch key, otherwise a free trial key is
        created for you and returned.

        url: the page to convert, optional.
        html: raw html to convert, optional (provide url or html, not both).
        api_key: an existing pagewatch bearer token, optional.
        paper: A4, Letter, Legal or A3.
        landscape: landscape orientation.

Input parameters:

- `api_key`
- `html`
- `landscape` (boolean)
- `paper` (string)
- `url`

### `register` (~175 tokens)

Create a pagewatch api key for yourself. Free, no signup and no human form.
        Returns a bearer token that starts with a small free trial so your first
        read_page, screenshot or pdf works right away. When the trial runs out, hand
        the returned verification_uri_complete to your human, who confirms one email
        to unlock 200 more free credits (still free, nothing to pay). Reuse the token
        by passing it as api_key, or set it as Authorization: Bearer <token> on this
        server. Nothing is ever charged: pagewatch has no payment processor connected.

        label: a short name for this key, optional.
        purpose: why you want web access, shown to your human on the activation page.

Input parameters:

- `label`
- `purpose`

### `balance` (~79 tokens)

Check the remaining free credits on your pagewatch key, plus the per-call
        prices and, if the key is not switched on yet, the free activation link to
        give your human. Pass api_key if you did not configure an Authorization header.

        api_key: an existing pagewatch bearer token, optional.

Input parameters:

- `api_key`

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens#diagnostics

## Score history

- 2026-08-03: 23
- 2026-08-02: 23
- 2026-08-01: 23
- 2026-07-31: 23
- 2026-07-30: 14
- 2026-07-29: 57
- 2026-07-28: 56
- 2026-07-27: 55
- 2026-07-26: 55

## Links

- Remote endpoint: https://pagelens.dev/mcp
- Repository: https://github.com/toolshedlabs-hash/pagewatch-mcp
- Website: https://pagelens.dev/
- Changelog RSS feed: https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dev-pagelens-pagewatch/pagelens
