# stagenth · 文档解析 (remote · stagenth.com)

Parse PDF/Word/PPT/HTML to Markdown; tables as JSON, image extraction, RAG chunking, page ranges.

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

## Components

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

## Channel facts

- Endpoint: `https://stagenth.com/mcp/doc-parse/`
- 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**: 60/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 814 tokens (~203/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-doc-parse https://stagenth.com/mcp/doc-parse/
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

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

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-02 (score 66, +1)

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

### 2026-07-31 (score 65, +2)

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

### 2026-07-29 (score 63, +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 62, +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 61, 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 61)

First indexed and scored.

## MCP tools (4)

### `doc_parse` (~220 tokens)

把 PDF / Word(.docx) / PPT(.pptx) / HTML / 纯文本 解析成干净 Markdown + 结构化（按实际解析页数计费，每页 1 credit）。

        纯解析 + 格式转换、不生成任何 AI 内容；扫描件 OCR 暂未支持。
        支持 page_range 只解析指定页码段（只按解析的页数扣费）。

Input parameters:

- `data_base64`: 文档内容 base64（与 file_id 二选一）
- `file_id`: 已上传到文件中转站的文档 ID（与 data_base64 二选一）
- `filename` (string): 文件名带扩展名；base64 输入时必填以判类型（.pdf/.docx/.pptx）
- `max_pages` (integer): 最多解析页数，0=全部
- `page_range` (string): 页码范围，如 3-10 或 5，空=全部（PDF/PPT 有效）

### `doc_tables` (~171 tokens)

抽取文档中的表格（PDF / .docx / .pptx），转成 headers+rows 的 JSON 可直接计算。

        与 doc_parse 的区别：表格不再压平成 markdown 竖线文本，而是结构化行列，
        AI 可直接算合计/对比；PDF 用版面识别找表格。

Input parameters:

- `data_base64`: 文档内容 base64（与 file_id 二选一）
- `file_id`: 已上传到文件中转站的文档 ID（与 data_base64 二选一）
- `filename` (string): 文件名带扩展名；base64 输入时必填以判类型
- `max_pages` (integer): PDF 最多扫描页数（1-100）

### `doc_images` (~161 tokens)

抽取文档内嵌的图片（PDF / .docx / .pptx），打包 ZIP 落文件中转站并返下载 URL。

        过滤 <1KB 的图标噪声；多模态 AI 可配合 doc_parse 的文本一起理解图文文档。

Input parameters:

- `data_base64`: 文档内容 base64（与 file_id 二选一）
- `file_id`: 已上传到文件中转站的文档 ID（与 data_base64 二选一）
- `filename` (string): 文件名带扩展名；base64 输入时必填以判类型
- `max_images` (integer): 最多抽取图片数（1-100）

### `doc_chunk` (~188 tokens)

把文档切成适合 RAG / 向量嵌入的语义块（按标题层级切，超长块按段落细分）。

        返回 [{index, heading, text, chars}]，喂检索/嵌入无需再自己写切块逻辑。

Input parameters:

- `data_base64`: 文档内容 base64（与 file_id 二选一）
- `file_id`: 已上传到文件中转站的文档 ID（与 data_base64 二选一）
- `filename` (string): 文件名带扩展名；base64 输入时必填以判类型
- `max_chars` (integer): 每块最大字符数（200-8000）
- `page_range` (string): 页码范围，如 3-10，空=全部（PDF/PPT 有效）

## Diagnostics

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

## Score history

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

## Links

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