# io.github.steviepinero/docforge (remote · docforged.mcpize.run)

12 paid document tools: PDF to markdown, OCR, tables, invoices, Word/Excel/HTML, merge/split. x402

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

## Components

- remote · `docforged.mcpize.run`: 70/100 (this document), [markdown](https://verifymcp.io/servers/steviepinero-docforge/docforged.md), [page](https://verifymcp.io/servers/steviepinero-docforge/docforged)

## Channel facts

- Endpoint: `https://docforged.mcpize.run/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.2.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-17.

- **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 5 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**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 522 tokens (~104/item across 5 items; 5 tools + 0 resources), lean.
  - 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.
- **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 steviepinero-docforge https://docforged.mcpize.run/mcp
```

### Codex

```toml
[mcp_servers.steviepinero-docforge]
url = "https://docforged.mcpize.run/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "steviepinero-docforge": {
      "type": "remote",
      "url": "https://docforged.mcpize.run/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add steviepinero-docforge --url https://docforged.mcpize.run/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  steviepinero-docforge:
    url: "https://docforged.mcpize.run/mcp"
```

### Other

```json
{
  "mcpServers": {
    "steviepinero-docforge": {
      "type": "http",
      "url": "https://docforged.mcpize.run/mcp"
    }
  }
}
```

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-17 (score 70, +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-08-15 (score 69, +1)

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

### 2026-08-13 (score 68, +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-08-11 (score 67, +1)

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

### 2026-08-10 (score 66)

First indexed and scored.

## MCP tools (5)

### `pdf_to_markdown` (~98 tokens)

PDF to Markdown

Extract the text of a PDF and convert it to clean markdown. Detects headings by font size and preserves lists and paragraphs. Input: a text-based PDF via file_url or file_base64. For scanned PDFs use ocr_image on page images instead.

Input parameters:

- `file_base64` (string): Base64-encoded file contents (data-URI prefix allowed)
- `file_url` (string): Public http(s) URL of the file

### `ocr_image` (~119 tokens)

OCR Image to Text

Run optical character recognition on an image (png, jpg, webp, bmp) and return the recognized text with a confidence score. Supports 100+ languages via the language parameter (ISO 639-2 codes like 'eng', 'deu', 'fra', 'spa').

Input parameters:

- `file_base64` (string): Base64-encoded file contents (data-URI prefix allowed)
- `file_url` (string): Public http(s) URL of the file
- `language` (string): Tesseract language code, default 'eng'

### `extract_tables` (~88 tokens)

Extract Tables from PDF

Detect and reconstruct tables from a text-based PDF. Returns each table as structured rows plus ready-to-use markdown and CSV renderings. Works best on PDFs with clear columnar layout (invoices, reports, statements).

Input parameters:

- `file_base64` (string): Base64-encoded file contents (data-URI prefix allowed)
- `file_url` (string): Public http(s) URL of the file

### `render_pdf` (~97 tokens)

Render Markdown/HTML to PDF

Render markdown (or simple HTML) into a clean, printable A4 PDF. Supports headings, paragraphs, bullet and numbered lists, blockquotes, code blocks, horizontal rules, and inline bold/italic/code. Returns the PDF as base64 plus page count.

Input parameters:

- `content` (string, required): The markdown or HTML source to render
- `format` (string): Input format, default markdown
- `title` (string): PDF document title metadata

### `parse_invoice` (~120 tokens)

Parse Invoice/Receipt

Extract structured data from an invoice or receipt: vendor, invoice number, dates, currency, subtotal, tax, total, and line items. Accepts a text-based PDF, or an image when is_image is true (OCR is applied first). Returns JSON.

Input parameters:

- `file_base64` (string): Base64-encoded file contents (data-URI prefix allowed)
- `file_url` (string): Public http(s) URL of the file
- `is_image` (boolean): Set true when the file is a photo/scan image rather than a PDF

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/steviepinero-docforge/docforged#diagnostics

## Score history

- 2026-08-17: 70
- 2026-08-16: 69
- 2026-08-15: 69
- 2026-08-14: 68
- 2026-08-13: 68
- 2026-08-12: 67
- 2026-08-11: 67
- 2026-08-10: 66

## Links

- Remote endpoint: https://docforged.mcpize.run/mcp
- Changelog RSS feed: https://verifymcp.io/servers/steviepinero-docforge/docforged.xml
- Changelog JSON feed: https://verifymcp.io/servers/steviepinero-docforge/docforged.json
- HTML version of this page: https://verifymcp.io/servers/steviepinero-docforge/docforged
