Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.mcpware/pagecast

NPM · @MCPWARE/PAGECAST · SCANNED AUG 5

Record any browser page as GIF or video via MCP

Available components

+22 this week 68 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security81
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree.Partial
  • 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. View diagnostics → Partial
  • Only part of the dependency tree could be resolved (98 of 102), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 413 tokens (~68/item across 6 items; 6 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management30
  • Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @mcpware/pagecast

# add to Claude Code
claude mcp add mcpware-pagecast -- npx -y @mcpware/pagecast
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add mcpware-pagecast --command npx --arg -y --arg @mcpware/pagecast
# ~/.hermes/config.yaml
mcp_servers:
  mcpware-pagecast:
    command: "npx"
    args: ["-y", "@mcpware/pagecast"]
// mcp.json
{
  "mcpServers": {
    "mcpware-pagecast": {
      "command": "npx",
      "args": [
        "-y",
        "@mcpware/pagecast"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 5 Aug 26 +1
    • CVE-2026-69207 no longer affects this package security
    • Known CVEs: fail → partial security
  • 4 Aug 26 0
    • CVE-2026-69207 affects this package: medium security
    • Known CVEs: partial → fail security
  • 2 Aug 26 +46
    • Provenance: unverified → fail security
    • Install scripts: unverified → partial security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • The scripts that run when this package is installed changed: postinstall security
    • Tool coverage: 100 → unverified functional
    • Security disclosure: fail → unverified functional
    • Schema quality: unverified → excellent functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Stability: unverified → 0.20 functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • First check of Schema quality: unverified functional
    • Licence: MIT functional
  • 31 Jul 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 5 Aug 2026 · Analysed npm/@mcpware/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Install scripts 1 script
Hook Tier Command
postinstall unreviewed npx playwright install chromium 2>/dev/null || true
Dependencies 98 packages

98 packages in the resolved dependency tree · 96 deprecated · 30 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 6 exposed · ~413 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
convert_to_gif ~98

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

NameTypeReqDescription
fpsnumberGIF frame rate (default 10)
startTimenumberSkip first N seconds (useful to trim blank loading frames)
webmPathstringyesPath to the .webm file
widthnumberGIF width in pixels (default 640, height auto-scaled)

No output schema declared.

No examples provided.

interact_page ~63

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

NameTypeReqDescription
actionsarrayyesArray of actions to perform sequentially
sessionIdstringyesSession ID from record_page

No output schema declared.

No examples provided.

list_recordings ~39

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

NameTypeReqDescription
directorystringDirectory to list (default: ./recordings)

No output schema declared.

No examples provided.

record_and_gif ~108

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

NameTypeReqDescription
durationSecondsnumberHow long to record (default 5 seconds)
gifFpsnumberGIF frame rate
gifWidthnumberGIF width (height auto-scaled)
heightnumberViewport height
urlstringyesURL to record
widthnumberViewport width

No output schema declared.

No examples provided.

record_page ~69

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

NameTypeReqDescription
heightnumberViewport height in pixels
urlstringyesURL to open and record
widthnumberViewport width in pixels

No output schema declared.

No examples provided.

stop_recording ~36

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

NameTypeReqDescription
sessionIdstringyesSession ID from record_page

No output schema declared.

No examples provided.