# io.github.vkuprin/site-spy (npm · @site-spy/mcp-server)

MCP server for Site Spy — lets AI agents monitor websites for changes

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

## Components

- npm · `@site-spy/mcp-server`: 63/100 (this document), [markdown](https://verifymcp.io/servers/vkuprin-site-spy/site-spy-mcp-server.md), [page](https://verifymcp.io/servers/vkuprin-site-spy/site-spy-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@site-spy/mcp-server`
- Version: `0.2.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-04.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects hono 4.12.33, reached via @modelcontextprotocol/sdk > hono. A fixed version is available.
  - 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**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (ISC).
  - Actively maintained (last published 82 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1515 tokens (~75/item across 20 items; 20 tools + 0 resources), lean.
  - 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 vkuprin-site-spy -- npx -y @site-spy/mcp-server
```

### Codex

```bash
codex mcp add vkuprin-site-spy -- npx -y @site-spy/mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vkuprin-site-spy": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@site-spy/mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add vkuprin-site-spy --command npx --arg -y --arg @site-spy/mcp-server
```

### Hermes

```yaml
mcp_servers:
  vkuprin-site-spy:
    command: "npx"
    args: ["-y", "@site-spy/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "vkuprin-site-spy": {
      "command": "npx",
      "args": [
        "-y",
        "@site-spy/mcp-server"
      ]
    }
  }
}
```

## 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-04 (score 63, 0)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail

### 2026-08-03 (score 63, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-08-02 (score 60, +39)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: ISC

### 2026-08-01 (score 21, +21)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, −40)

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

### 2026-07-30 (score 40, +20)

- [functional regression] Dependency health: partial → unverified
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 20, −20)

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

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

First indexed and scored.

## MCP tools (20)

### `authenticate` (~59 tokens)

Connect to Site Spy with an API key. If the user doesn't have one, ask them to open https://sitespy.app/dashboard to log in and copy their key from the Settings > API tab.

Input parameters:

- `api_key` (string, required): Site Spy API key

### `auth_status` (~20 tokens)

Check whether the MCP server is currently authenticated with Site Spy.

### `list_watches` (~47 tokens)

List all monitored websites. Returns each watch with its UUID, URL, title, status, last checked/changed timestamps, and tags.

Input parameters:

- `tag` (string): Filter by tag UUID

### `create_watch` (~119 tokens)

Start monitoring a URL for changes. Returns the UUID of the new watch.

Input parameters:

- `check_hours` (number): Hours between checks (default: uses account setting)
- `check_minutes` (number): Minutes between checks
- `fetch_backend` (string): How to fetch the page: html_requests (fast, no JS) or html_webdriver (browser with JS)
- `tag` (string): Tag UUID to categorize this watch
- `title` (string): Human-readable name for this monitor
- `url` (string, required): URL to monitor for changes

### `get_watch` (~37 tokens)

Get full details of a specific watch including its configuration, last check status, and change history summary.

Input parameters:

- `uuid` (string, required): Watch UUID

### `update_watch` (~119 tokens)

Update a watch's configuration. Use this to pause/resume, change check interval, update title, or modify notification settings.

Input parameters:

- `check_hours` (number): Hours between checks
- `check_minutes` (number): Minutes between checks
- `notification_muted` (boolean): Mute or unmute notifications
- `paused` (boolean): Pause or resume monitoring
- `tag` (string): Tag UUID
- `title` (string): New title
- `url` (string): New URL to monitor
- `uuid` (string, required): Watch UUID

### `delete_watch` (~32 tokens)

Stop monitoring a URL and delete the watch with all its history.

Input parameters:

- `uuid` (string, required): Watch UUID to delete

### `get_change_history` (~41 tokens)

Get the list of timestamps when changes were detected for a watch. Use these timestamps with get_snapshot or get_diff.

Input parameters:

- `uuid` (string, required): Watch UUID

### `get_snapshot` (~48 tokens)

Get the page content captured at a specific timestamp. Use get_change_history first to find valid timestamps.

Input parameters:

- `timestamp` (string, required): Timestamp from change history
- `uuid` (string, required): Watch UUID

### `get_diff` (~58 tokens)

Compare page content between two timestamps to see exactly what changed. Use get_change_history to find valid timestamps.

Input parameters:

- `from_timestamp` (string, required): Earlier timestamp
- `to_timestamp` (string, required): Later timestamp
- `uuid` (string, required): Watch UUID

### `search_watches` (~40 tokens)

Search across all watches by URL, title, or content. Returns matching watches.

Input parameters:

- `query` (string, required): Search query (matches against URL, title)

### `list_tags` (~17 tokens)

List all available tags/categories for organizing watches.

### `trigger_recheck` (~54 tokens)

Force an immediate recheck of all watches (or filtered by tag). Useful when you need fresh data now rather than waiting for the next scheduled check.

Input parameters:

- `tag` (string): Only recheck watches with this tag UUID

### `fetch_url` (~429 tokens)

Fetch a single known URL through Site Spy. Do NOT use this for discovery — use web_search to find URLs first, then fetch_url on each result. Do NOT fetch google.com / bing.com directly (they always block — wastes the cascade budget). For known static sites prefer fetch_backend: 'html_requests' (≤10s). For SPAs use 'html_webdriver'. For Cloudflare-protected pages use 'flaresolverr'. 'auto' cascades through all three and is capped at 30s total (FETCH_URL_AUTO_TOTAL_TIMEOUT_SECONDS). On failure, response includes attempts[] and cascade_summary so you can see what was tried. This does not create a watch or save history.

Input parameters:

- `body` (string): Optional request body string.
- `fetch_backend` (string): Fetch strategy. Default 'auto' cascades html_requests -> html_webdriver -> flaresolverr with a 30s total cap. Prefer 'html_requests' explicitly for fast static sites.
- `headers` (object): Optional request headers.
- `ignore_status_codes` (boolean): Return content for non-2xx responses instead of failing. Defaults to true.
- `include_filters` (array): Optional selectors used by auto mode to decide if browser rendering is needed.
- `js` (string): JavaScript to execute before extraction when a browser backend is used.
- `max_content_chars` (integer): Maximum returned characters for content fields.
- `method` (string): HTTP method. Browser fetchers use GET-like navigation.
- `output` (string): Response content format. Defaults to text.
- `screenshot` (boolean): Return a base64 screenshot when the browser backend captures one.
- `screenshot_format` (string): Screenshot format. Defaults to PNG.
- `timeout` (integer): Per-backend timeout in seconds (1-120). 'auto' mode also has a separate 30s total wall-clock cap (env FETCH_URL_AUTO_TOTAL_TIMEOUT_SECONDS) that bounds the whole cascade.
- `url` (string, required): URL to fetch
- `wait_seconds` (integer): Extra browser wait before extracting content.

### `web_search` (~183 tokens)

Search the web via DuckDuckGo HTML and return a list of result URLs with titles and snippets. Use this BEFORE fetch_url when the user asks you to 'search', 'find', 'look up', or otherwise discover content — instead of guessing google.com (which always blocks). Pipeline: web_search(query) -> pick relevant results -> fetch_url(result.url, fetch_backend: 'html_requests') on each. Returns up to 20 results.

Input parameters:

- `debug` (boolean): When true, include a debug_html_excerpt in the response for troubleshooting parsing failures.
- `limit` (integer): Max results to return. Default 10, max 20.
- `query` (string, required): Search query.
- `region` (string): DuckDuckGo region code. Default 'wt-wt' (worldwide). Examples: 'us-en', 'fr-fr', 'de-de'.

### `get_ai_summary` (~56 tokens)

Get the AI-generated plain-English summary of a watch's most recent change. Requires a Pro or Business plan. Returns the summary text if available, or a message if no summary exists yet.

Input parameters:

- `uuid` (string, required): Watch UUID

### `get_rss_settings` (~26 tokens)

Get the current RSS feed settings including whether feeds are enabled and the feed token.

### `generate_rss_token` (~83 tokens)

Generate or regenerate an RSS feed token. Use the token to build feed URLs: {server}/rss?token={token} for all watches, {server}/rss/watch/{uuid}?token={token} for a single watch, {server}/rss/tag/{tag_uuid}?token={token} for a tag. Regenerating invalidates all existing feed URLs.

### `revoke_rss_token` (~24 tokens)

Revoke the RSS feed token, disabling all RSS feed access immediately.

### `get_notifications` (~23 tokens)

Get the current notification settings (email, Telegram, web push, etc.).

## Diagnostics

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

## Score history

- 2026-08-04: 63
- 2026-08-03: 63
- 2026-08-02: 60
- 2026-08-01: 21
- 2026-07-31: 0
- 2026-07-30: 40
- 2026-07-28: 20
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/@site-spy/mcp-server
- Socket report: https://socket.dev/npm/package/@site-spy/mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/vkuprin-site-spy/site-spy-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/vkuprin-site-spy/site-spy-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/vkuprin-site-spy/site-spy-mcp-server
