# org.snapforge/snapforge (npm · snapforge-mcp)

Screenshots, PDFs and Markdown from any URL or HTML for AI agents, via the SnapForge API

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

## Components

- remote · `snapforge.org`: 75/100, [markdown](https://verifymcp.io/servers/org-snapforge-snapforge/snapforge.md), [page](https://verifymcp.io/servers/org-snapforge-snapforge/snapforge)
- npm · `snapforge-mcp`: 68/100 (this document), [markdown](https://verifymcp.io/servers/org-snapforge-snapforge/snapforge-mcp.md), [page](https://verifymcp.io/servers/org-snapforge-snapforge/snapforge-mcp)

## Channel facts

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

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), 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 (95 of 99), 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 13 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 651 tokens (~162/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add org-snapforge-snapforge -- npx -y snapforge-mcp
```

### Codex

```bash
codex mcp add org-snapforge-snapforge -- npx -y snapforge-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add org-snapforge-snapforge --command npx --arg -y --arg snapforge-mcp
```

### Hermes

```yaml
mcp_servers:
  org-snapforge-snapforge:
    command: "npx"
    args: ["-y", "snapforge-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "org-snapforge-snapforge": {
      "command": "npx",
      "args": [
        "-y",
        "snapforge-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-03 (score 68, +4)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 64, +44)

- [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 regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [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 20, −25)

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

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

First indexed and scored.

## MCP tools (4)

### `snapforge_screenshot` (~234 tokens)

SnapForge screenshot

Capture a screenshot of a public URL or raw HTML and return it as an image (PNG/JPEG). Full-page by default.

Input parameters:

- `delay` (integer): Extra wait in milliseconds before capture (0–10000)
- `format` (string): Image format: "png" (default) or "jpeg"
- `fullPage` (boolean): Capture the full scrollable page (default true)
- `height` (integer): Viewport height in pixels (100–2160)
- `html` (string): Raw HTML to render instead of a URL (max 2MB). Provide either url or html.
- `quality` (integer): JPEG quality 1–100 (ignored for PNG)
- `scale` (integer): Device pixel ratio for high-DPI/retina output (1–3)
- `url` (string): Public http/https URL to render. Provide either url or html.
- `waitUntil` (string): When to consider the page ready: "load" (default) or "networkidle"
- `width` (integer): Viewport width in pixels (100–3840)

Output parameters:

- `bytes` (integer): Size of the image in bytes
- `mimeType` (string): Image MIME type, e.g. image/png
- `savedPath` (string): Absolute path to the saved image file

### `snapforge_pdf` (~211 tokens)

SnapForge PDF

Render a public URL or raw HTML to a PDF. The PDF is written to a temp file and its path is returned.

Input parameters:

- `delay` (integer): Extra wait in milliseconds before capture (0–10000)
- `html` (string): Raw HTML to render instead of a URL (max 2MB). Provide either url or html.
- `landscape` (boolean): Landscape orientation (default false)
- `margin` (string): CSS size applied to all margins, e.g. "1cm"
- `pageFormat` (string): Paper size when paginating (default A4)
- `printBackground` (boolean): Include CSS background colors and images (default true)
- `singlePage` (boolean): Output one continuous page sized to the content height (no A4 pagination)
- `url` (string): Public http/https URL to render. Provide either url or html.
- `waitUntil` (string): When to consider the page ready: "load" (default) or "networkidle"

Output parameters:

- `bytes` (integer): Size of the PDF in bytes
- `savedPath` (string): Absolute path to the saved PDF file

### `snapforge_markdown` (~130 tokens)

SnapForge URL to Markdown

Extract a clean Markdown version of a public URL or raw HTML (article extraction + HTML→Markdown). Great for feeding live web content to an LLM.

Input parameters:

- `delay` (integer): Extra wait in milliseconds before capture (0–10000)
- `html` (string): Raw HTML to render instead of a URL (max 2MB). Provide either url or html.
- `url` (string): Public http/https URL to render. Provide either url or html.
- `waitUntil` (string): When to consider the page ready: "load" (default) or "networkidle"

Output parameters:

- `markdown` (string): The extracted Markdown content
- `savedPath` (string): Absolute path to the saved .md file

### `snapforge_signup` (~76 tokens)

SnapForge signup (free API key)

Create a free SnapForge account (100 renders/month) with just an email address and get the API key instantly. The key becomes active for this session immediately; persist it later as the SNAPFORGE_API_KEY environment variable.

Input parameters:

- `email` (string, required): Email address to attach the API key to (the key is also emailed there)

Output parameters:

- `apiKey` (string): Your SnapForge API key
- `monthlyQuota` (integer): Included renders per month
- `plan` (string): Plan name (free)

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 64
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 45
- 2026-07-28: 45
- 2026-07-27: 45

## Links

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