# stagenth · 网页数据 (remote · stagenth.com)

Web scraping to clean Markdown with JS rendering, multi-page crawl, structured extract, sitemaps.

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

## Components

- remote · `stagenth.com`: 67/100 (this document), [markdown](https://verifymcp.io/servers/com-stagenth-web/mcp-web.md), [page](https://verifymcp.io/servers/com-stagenth-web/mcp-web)

## Channel facts

- Endpoint: `https://stagenth.com/mcp/web/`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 4 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 64/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 670 tokens (~167/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**: 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 --transport http com-stagenth-web https://stagenth.com/mcp/web/
```

### Codex

```toml
[mcp_servers.com-stagenth-web]
url = "https://stagenth.com/mcp/web/"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-stagenth-web": {
      "type": "remote",
      "url": "https://stagenth.com/mcp/web/",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-stagenth-web --url https://stagenth.com/mcp/web/ --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-stagenth-web:
    url: "https://stagenth.com/mcp/web/"
```

### Other

```json
{
  "mcpServers": {
    "com-stagenth-web": {
      "type": "http",
      "url": "https://stagenth.com/mcp/web/"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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 67, +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-07-31 (score 66, +2)

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

### 2026-07-30 (score 64, 0)

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

### 2026-07-29 (score 64, +1)

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

### 2026-07-28 (score 63, +1)

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

### 2026-07-27 (score 62, 0)

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

### 2026-07-26 (score 62)

First indexed and scored.

## MCP tools (4)

### `scrape_url` (~179 tokens)

抓取一个公开网页，返回干净的 Markdown（供 AI 阅读/总结/提取）。

        只抓公开网页，禁止内网/保留地址；不生成任何内容，只做抓取与格式转换。
        静态抓取拿不到内容的 JS 动态页可加 render=true 走真浏览器渲染。

Input parameters:

- `formats`: 输出格式子集：markdown / html / text，默认 markdown
- `only_main_content` (boolean): 只提取正文主体，去掉导航/广告/页脚
- `render` (boolean): 经境内托管浏览器真渲染 JS 后再抽取（适合动态页），默认关闭
- `url` (string, required): 要抓取的网页 URL（http/https，仅限公开网页）

### `crawl` (~148 tokens)

从入口 URL 广度优先抓取多页，每页转干净 Markdown（按实际抓取页数计费，每页 1 credit）。

        纯抓取 + 格式转换，不生成任何 AI 内容；逐页 SSRF 校验，单页失败不中断。

Input parameters:

- `max_depth` (integer): 链接跟踪深度（0-3，0=只抓入口页）
- `max_pages` (integer): 最多抓取页数（1-20）
- `same_domain` (boolean): 只跟踪同域名链接
- `start_url` (string, required): 入口页 URL（http/https，仅限公开网页）

### `extract` (~171 tokens)

结构化抽取网页要素（表格/链接/图片/标题大纲/元数据/自定义 CSS 选择器），返回 JSON。

        与 scrape_url 的区别：不返回整页正文，只返回指定结构——表格转成 headers+rows
        的 JSON 可直接计算；配自定义选择器可精准取价格/标题等字段。

Input parameters:

- `selectors`: 可选 CSS 选择器映射 {名称: 选择器}，每个选择器返回匹配元素的文本列表
- `targets`: 抽取目标子集：metadata / headings / links / images / tables，默认 metadata+headings+links+tables
- `url` (string, required): 要抽取的网页 URL（http/https，仅限公开网页）

### `site_map` (~99 tokens)

发现站点 URL 清单：优先 robots.txt / sitemap.xml，无站点地图时退化为入口页链接发现。

        配合 scrape_url / crawl 使用：先 site_map 挑准页面，再精准抓取，省 credit。

Input parameters:

- `max_urls` (integer): 最多返回 URL 数（1-1000）
- `url` (string, required): 站点入口 URL（用于确定站点与域名）

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-stagenth-web/mcp-web#diagnostics

## Score history

- 2026-08-03: 67
- 2026-08-02: 66
- 2026-08-01: 66
- 2026-07-31: 66
- 2026-07-30: 64
- 2026-07-29: 64
- 2026-07-28: 63
- 2026-07-27: 62
- 2026-07-26: 62

## Links

- Remote endpoint: https://stagenth.com/mcp/web/
- Authorisation metadata: https://stagenth.com/.well-known/oauth-protected-resource/mcp/web
- Changelog RSS feed: https://verifymcp.io/servers/com-stagenth-web/mcp-web/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-stagenth-web/mcp-web/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-stagenth-web/mcp-web
