# com.scrapeunblocker/scrapeunblocker-mcp (npm · scrapeunblocker-mcp)

Fetch any web page's HTML or AI-parsed JSON through the ScrapeUnblocker anti-bot API.

- Trust score: 80/100 (high trust)
- Change this week: +34
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

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

## Channel facts

- Registry: `npm`
- Package: `scrapeunblocker-mcp`
- Version: `0.1.2`
- 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 (96 of 100), 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 (96 of 100), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to ScrapeUnblocker/scrapeunblocker-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 6 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 75/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 437 tokens (~145/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 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 com-scrapeunblocker-scrapeunblocker-mcp -- npx -y scrapeunblocker-mcp
```

### Codex

```bash
codex mcp add com-scrapeunblocker-scrapeunblocker-mcp -- npx -y scrapeunblocker-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-scrapeunblocker-scrapeunblocker-mcp --command npx --arg -y --arg scrapeunblocker-mcp
```

### Hermes

```yaml
mcp_servers:
  com-scrapeunblocker-scrapeunblocker-mcp:
    command: "npx"
    args: ["-y", "scrapeunblocker-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "com-scrapeunblocker-scrapeunblocker-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "scrapeunblocker-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 80, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 79, +59)

- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: ScrapeUnblocker/scrapeunblocker-mcp
- [functional regression] Security disclosure: fail → unverified
- [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 improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-07-31 (score 20, −4)

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

### 2026-07-30 (score 24, −22)

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

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

First indexed and scored.

## MCP tools (3)

### `fetch_html` (~238 tokens)

Fetch page HTML

Fetch the fully rendered HTML of any web page through ScrapeUnblocker, bypassing anti-bot protection (Cloudflare, DataDome, PerimeterX, Akamai, Shape). Use this when a normal fetch is blocked (403/429, captcha, 'access denied') or when the page needs a real browser to render. Returns the raw HTML as text.

Input parameters:

- `method_timeout_seconds` (integer): Cap in seconds for the render-wait method.
- `proxy_country` (string): Optional ISO 3166-1 alpha-2 country code to route through, e.g. 'US', 'GB', 'DE'.
- `sleep_seconds` (number): Extra seconds to wait after load before capturing the HTML.
- `url` (string, required): The absolute URL to fetch (http/https).
- `wait_method` (string): Optional render-wait strategy: 'css' waits for a selector, 'js' waits for a JS expression to be truthy.
- `wait_value` (string): The CSS selector or JS expression paired with wait_method (e.g. '#price' or 'document.readyState==="complete"').

### `fetch_parsed` (~113 tokens)

Fetch AI-parsed page data

Fetch a web page through ScrapeUnblocker and return AI-parsed structured JSON instead of raw HTML (e.g. product details, article content). Best for extracting fields from product, listing or article pages without writing your own HTML parsing.

Input parameters:

- `proxy_country` (string): Optional ISO country code to route through, e.g. 'US'.
- `rules_hint` (string): Optional natural-language hint about what to extract, to guide parsing.
- `url` (string, required): The absolute URL to fetch and parse.

### `google_search` (~86 tokens)

Google search results

Run a Google search through ScrapeUnblocker and return the organic results as structured JSON. Use this to discover URLs before fetching them.

Input parameters:

- `keyword` (string, required): The search query.
- `pages_to_check` (integer): How many result pages to collect (default 1).
- `proxy_country` (string): Optional ISO country code to search from, e.g. 'US'.

## Diagnostics

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

## Score history

- 2026-08-03: 80
- 2026-08-02: 79
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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