# io.siteglass/mcp (npm · siteglass-mcp)

Archive any URL to a shareable rrweb/pdf/png snapshot + agent-driven web QA (scan, run E2E flows).

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

## Components

- npm · `siteglass-mcp`: 61/100 (this document), [markdown](https://verifymcp.io/servers/io-siteglass-mcp/siteglass-mcp.md), [page](https://verifymcp.io/servers/io-siteglass-mcp/siteglass-mcp)

## Channel facts

- Registry: `npm`
- Package: `siteglass-mcp`
- Version: `0.1.5`
- 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-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), 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 23 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 636 tokens (~57/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 75/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 25% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add io-siteglass-mcp -- npx -y siteglass-mcp
```

### Codex

```bash
codex mcp add io-siteglass-mcp -- npx -y siteglass-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add io-siteglass-mcp --command npx --arg -y --arg siteglass-mcp
```

### Hermes

```yaml
mcp_servers:
  io-siteglass-mcp:
    command: "npx"
    args: ["-y", "siteglass-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "io-siteglass-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "siteglass-mcp"
      ]
    }
  }
}
```

## 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-02 (score 61, +42)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 19, −15)

- [security regression] Malware scan: pass → unverified

### 2026-07-31 (score 34, +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 25, +1)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 24, −19)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (11)

### `siteglass_register_site` (~59 tokens)

Register a web app (its deployed URL) with siteglass and get an ownership-proof token to place on it. Step 1.

Input parameters:

- `url` (string, required): The app's URL, e.g. https://myapp.lovable.app

### `siteglass_verify_site` (~39 tokens)

Check that the ownership-proof token is live on the site. Step 2 (after placing the token).

Input parameters:

- `site_id` (string, required)

### `siteglass_scan` (~49 tokens)

Crawl a verified site (first scan per site is free). Returns a crawl_id; if still running, poll with siteglass_get_scan. Step 3.

Input parameters:

- `site_id` (string, required)

### `siteglass_get_scan` (~40 tokens)

Read a scan's report + findings by crawl_id (use after siteglass_scan if it was still running).

Input parameters:

- `crawl_id` (string, required)

### `siteglass_generate_flows` (~42 tokens)

Derive executable E2E test flows from a scan (LLM). Step 4. Returns flow ids.

Input parameters:

- `crawl_id` (string, required)

### `siteglass_run_flow` (~60 tokens)

Run one test flow. Returns a run_id; if still running, poll with siteglass_get_run. Step 5.

Input parameters:

- `flow_id` (string, required)
- `full` (boolean): true = submit destructive actions for real (default false)

### `siteglass_get_run` (~43 tokens)

Read a flow run's per-step results + capture URLs by run_id (use after siteglass_run_flow if still running).

Input parameters:

- `run_id` (string, required)

### `siteglass_render` (~170 tokens)

Archive ANY public web page for a few sats — a permanent, shareable snapshot, returned as a permalink. The bot-friendly alternative to archive.today: no CAPTCHA, no signup, no ownership verification, callable programmatically. Default 'rrweb' captures the live rendered DOM (navigable, post-JS, selectable text + working links); 'pdf' is a single continuous page; 'png' a full-page image. Anonymous calls return a Lightning invoice (pay, then call siteglass_get_render); if your account has credits it archives immediately and returns the permalink.

Input parameters:

- `format` (string): rrweb (default, interactive DOM archive), pdf (single continuous page), or png (full-page image)
- `url` (string, required): Any public URL, e.g. https://example.com

### `siteglass_get_render` (~39 tokens)

Fetch an archive once its Lightning invoice is paid. Returns the permalink when ready, or a pending status.

Input parameters:

- `job_id` (string, required)

### `siteglass_set_credentials` (~50 tokens)

Provide a test account (username/password) so authenticated flows can log in to the site.

Input parameters:

- `password` (string, required)
- `site_id` (string, required)
- `username` (string, required)

### `siteglass_feedback` (~45 tokens)

Send feedback to the siteglass team (bugs, missing features, anything). Works for agents and people alike.

Input parameters:

- `context` (string)
- `message` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/io-siteglass-mcp/siteglass-mcp#diagnostics

## Score history

- 2026-08-03: 61
- 2026-08-02: 61
- 2026-08-01: 19
- 2026-07-31: 34
- 2026-07-30: 25
- 2026-07-28: 24
- 2026-07-27: 43

## Links

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