# io.github.mcpware/pagecast (npm · @mcpware/pagecast)

Record any browser page as GIF or video via MCP

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

## Components

- npm · `@mcpware/pagecast`: 68/100 (this document), [markdown](https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast.md), [page](https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast)

## Channel facts

- Registry: `npm`
- Package: `@mcpware/pagecast`
- Version: `0.1.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-08-05.

- **Supply Chain Security**: 81/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.
  - Runs a script at install time (postinstall) that we could not recognise. It may be perfectly ordinary, but we do not read the published tarball, so we cannot say what it does.
  - Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/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 136 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 413 tokens (~68/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add mcpware-pagecast -- npx -y @mcpware/pagecast
```

### Codex

```bash
codex mcp add mcpware-pagecast -- npx -y @mcpware/pagecast
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mcpware-pagecast": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@mcpware/pagecast"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mcpware-pagecast --command npx --arg -y --arg @mcpware/pagecast
```

### Hermes

```yaml
mcp_servers:
  mcpware-pagecast:
    command: "npx"
    args: ["-y", "@mcpware/pagecast"]
```

### Other

```json
{
  "mcpServers": {
    "mcpware-pagecast": {
      "command": "npx",
      "args": [
        "-y",
        "@mcpware/pagecast"
      ]
    }
  }
}
```

## 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-05 (score 68, +1)

- [security improvement] CVE-2026-69207 no longer affects this package
- [security improvement] Known CVEs: fail → partial

### 2026-08-04 (score 67, 0)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail

### 2026-08-02 (score 67, +46)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → partial
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] The scripts that run when this package is installed changed: postinstall
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-07-31 (score 21, −7)

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

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (6)

### `record_page` (~69 tokens)

Open a URL in a headless browser and start recording video. Returns a session ID. Call stop_recording when done.

Input parameters:

- `height` (number): Viewport height in pixels
- `url` (string, required): URL to open and record
- `width` (number): Viewport width in pixels

### `interact_page` (~63 tokens)

Perform actions on a recording page (scroll, click, hover, wait, navigate). Actions are performed sequentially and recorded in the video.

Input parameters:

- `actions` (array, required): Array of actions to perform sequentially
- `sessionId` (string, required): Session ID from record_page

### `stop_recording` (~36 tokens)

Stop a recording session and save the video as .webm file.

Input parameters:

- `sessionId` (string, required): Session ID from record_page

### `convert_to_gif` (~98 tokens)

Convert a .webm video to an optimized GIF using ffmpeg two-pass palette method.

Input parameters:

- `fps` (number): GIF frame rate (default 10)
- `startTime` (number): Skip first N seconds (useful to trim blank loading frames)
- `webmPath` (string, required): Path to the .webm file
- `width` (number): GIF width in pixels (default 640, height auto-scaled)

### `record_and_gif` (~108 tokens)

All-in-one: open URL, wait for specified duration, stop recording, convert to GIF. Best for simple demos.

Input parameters:

- `durationSeconds` (number): How long to record (default 5 seconds)
- `gifFps` (number): GIF frame rate
- `gifWidth` (number): GIF width (height auto-scaled)
- `height` (number): Viewport height
- `url` (string, required): URL to record
- `width` (number): Viewport width

### `list_recordings` (~39 tokens)

List all .webm and .gif recordings in the output directory.

Input parameters:

- `directory` (string): Directory to list (default: ./recordings)

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast#diagnostics

## Score history

- 2026-08-05: 68
- 2026-08-04: 67
- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@mcpware/pagecast
- Socket report: https://socket.dev/npm/package/@mcpware/pagecast
- Repository: https://github.com/mcpware/pagecast
- Changelog RSS feed: https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mcpware-pagecast/mcpware-pagecast
