io.github.mcpware/pagecast
NPM · @MCPWARE/PAGECAST · SCANNED AUG 5
Record any browser page as GIF or video via MCP
Available components
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 136 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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
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
claude mcp add mcpware-pagecast -- npx -y @mcpware/pagecast
codex mcp add mcpware-pagecast -- npx -y @mcpware/pagecast
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mcpware-pagecast": {
"type": "local",
"command": [
"npx",
"-y",
"@mcpware/pagecast"
],
"enabled": true
}
}
} openclaw mcp add mcpware-pagecast --command npx --arg -y --arg @mcpware/pagecast
mcp_servers:
mcpware-pagecast:
command: "npx"
args: ["-y", "@mcpware/pagecast"] {
"mcpServers": {
"mcpware-pagecast": {
"command": "npx",
"args": [
"-y",
"@mcpware/pagecast"
]
}
}
} 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.
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.
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.
convert_to_gif ~98
Convert a .webm video to an optimized GIF using ffmpeg two-pass palette method.
| Name | Type | Req | Description |
|---|---|---|---|
| fps | number | — | GIF frame rate (default 10) |
| startTime | number | — | Skip first N seconds (useful to trim blank loading frames) |
| webmPath | string | yes | Path to the .webm file |
| width | number | — | GIF 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.
| Name | Type | Req | Description |
|---|---|---|---|
| actions | array | yes | Array of actions to perform sequentially |
| sessionId | string | yes | Session ID from record_page |
No output schema declared.
No examples provided.
list_recordings ~39
List all .webm and .gif recordings in the output directory.
| Name | Type | Req | Description |
|---|---|---|---|
| directory | string | — | Directory 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.
| Name | Type | Req | Description |
|---|---|---|---|
| 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 | yes | URL to record |
| width | number | — | Viewport 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.
| Name | Type | Req | Description |
|---|---|---|---|
| height | number | — | Viewport height in pixels |
| url | string | yes | URL to open and record |
| width | number | — | Viewport width in pixels |
No output schema declared.
No examples provided.
stop_recording ~36
Stop a recording session and save the video as .webm file.
| Name | Type | Req | Description |
|---|---|---|---|
| sessionId | string | yes | Session ID from record_page |
No output schema declared.
No examples provided.