# Razi Document Tools (remote · www.razi.pro)

Document processing over MCP: merge, split and compress PDFs, run OCR, extract document text.

- Trust score: 36/100 (low)
- Change this week: 0
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- remote · `www.razi.pro`: 36/100 (this document), [markdown](https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents.md), [page](https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents)

## Channel facts

- Endpoint: `https://www.razi.pro/api/mcp/documents`
- Transports: `streamable-http`
- Auth: `none`
- 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-09-20.

- **Endpoint Security**: 89/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - The endpoint enforces authorisation, but returns a challenge with no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - 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**: 0/100
  - Transport blocked by authentication: the endpoint requires auth we don't have to verify streamable-http.
- **Schema Quality & AI Usability**: 0/100
  - Schema blocked by authentication: the endpoint requires auth we don't have to read it.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage blocked by authentication: the endpoint requires auth we don't have to read its tools.
- **Tool Safety**: 0/100
  - Tool safety blocked by authentication: the endpoint requires auth we don't have to read its tools.
- **Capabilities**: 0/100
  - Capabilities blocked by authentication: the endpoint requires auth we don't have to read them.

**Unverified: 6 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### How do I install the Razi Document Tools MCP server?

Razi Document Tools is a hosted endpoint at https://www.razi.pro/api/mcp/documents, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http razikallayi-razi-documents 'https://www.razi.pro/api/mcp/documents'
```

### Cursor

```json
{
  "mcpServers": {
    "razikallayi-razi-documents": {
      "url": "https://www.razi.pro/api/mcp/documents"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "razikallayi-razi-documents": {
      "type": "http",
      "url": "https://www.razi.pro/api/mcp/documents"
    }
  }
}
```

### Codex

```toml
[mcp_servers.razikallayi-razi-documents]
url = "https://www.razi.pro/api/mcp/documents"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "razikallayi-razi-documents": {
      "type": "remote",
      "url": "https://www.razi.pro/api/mcp/documents",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add razikallayi-razi-documents --url 'https://www.razi.pro/api/mcp/documents' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  razikallayi-razi-documents:
    url: "https://www.razi.pro/api/mcp/documents"
```

### Netclaw

```json
{
  "McpServers": {
    "razikallayi-razi-documents": {
      "Transport": "http",
      "Url": "https://www.razi.pro/api/mcp/documents"
    }
  }
}
```

### Vellum

```bash
assistant mcp add razikallayi-razi-documents -t streamable-http -u 'https://www.razi.pro/api/mcp/documents'
```

### Other

```json
{
  "mcpServers": {
    "razikallayi-razi-documents": {
      "type": "http",
      "url": "https://www.razi.pro/api/mcp/documents"
    }
  }
}
```

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-09-09 (score 36, −27)

- [security regression] Endpoint reachability: reachable → behind authorisation
- [security regression] Authorization: unverified → fail
- [security regression] Tool safety: pass → unverified
- [security regression] Transport: pass → unverified
- [functional regression] Capabilities: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-09-08 (score 63)

First indexed and scored.

## MCP tools (5)

### `merge_pdf` (~159 tokens)

Concatenate two or more PDFs into a single PDF, in the order supplied, and return the merged file. Page content is copied unchanged — it does not compress (use compress_pdf) or select pages (use split_pdf). Fewer than two files is rejected. Inputs must be PDFs; for a mix of images and PDFs use images_to_pdf, which runs in the browser only and is not available over this API. There is no upload channel over MCP: pass `fileUrls`, an array of URLs in razi.pro's own storage (for example the `url` returned by upload_file). Third-party URLs are rejected. Over the REST API the files may instead be attached as multipart/form-data. Limited to 20 merges per hour per IP.

### `split_pdf` (~227 tokens)

Extract page ranges from one PDF into new PDFs. One output file is produced per range: a single range returns that PDF directly, several ranges return a ZIP containing one PDF each. Pages are copied verbatim — this does not reduce file size (use compress_pdf) or rasterise pages (use pdf_to_images). There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage (for example the `url` returned by upload_file); third-party URLs are rejected. Over REST the PDF may be attached as multipart/form-data. Limited to 20 splits per hour per IP.

Input parameters:

- `ranges` (array, required): Page ranges to extract, 1-based and inclusive, one output file per entry. Use 'first-last' for a span ('1-2', '3-5'), a bare number for one page ('7'), or a comma-separated combination in one entry (…

### `compress_pdf` (~176 tokens)

Shrink a PDF's byte size while keeping it a PDF, for email limits or slow connections. Returns the compressed PDF. Ghostscript on razi.pro's worker downsamples embedded images at a fixed 'ebook' preset — lossy, with no quality knob. Compression is not guaranteed: if the worker is unavailable the fallback only rewrites the file with object streams, which typically saves almost nothing, and when nothing can be saved the original bytes are returned unchanged. This is for PDFs only — use compress_image for images and compress_video for video. Paid compute; 20 calls per hour per IP; a large file can take minutes. There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage (for example the `url` returned by upload_file); third-party URLs are rejected.

### `extract_text_ocr` (~235 tokens)

Read text off an IMAGE by optical character recognition — photos, screenshots and scans. Returns JSON { text, language, confidence? }. Choose between this and parse_document by what the file contains, not its extension: OCR is for pixels of text and is a best-effort transcription that misreads under blur, skew or low contrast, whereas parse_document reads characters that are already stored as text and is exact. Prefer parse_document for a text-bearing file. Layout is not preserved — no tables, columns or coordinates, just a flat string. Paid compute; 20 calls per hour per IP. There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage (for example the `url` returned by upload_file); third-party URLs are rejected.

Input parameters:

- `language` (string): ISO 639-2 style code for the language the recogniser should expect: eng English, ara Arabic, chi_sim Simplified Chinese, fra French, deu German, spa Spanish, jpn Japanese, kor Korean. Default eng. On…

### `parse_document` (~177 tokens)

Read the text out of a document that already stores it as characters, and return JSON { text, metadata }. Exact, unlike extract_text_ocr, which guesses characters from pixels and should be used only for photos and scans. Support is currently narrow: only .txt works — it is decoded as UTF-8 and returned in full. Every other extension, including .pdf and .docx, is rejected with 400. PDF parsing is not implemented; for a scanned or image-based PDF use extract_text_ocr instead. The file type is decided by the filename extension, not by inspecting the bytes. 10 calls per minute per caller. There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage (for example the `url` returned by upload_file); third-party URLs are rejected.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents#diagnostics

## Score history

- 2026-09-20: 36
- 2026-09-19: 36
- 2026-09-18: 36
- 2026-09-17: 36
- 2026-09-16: 36
- 2026-09-15: 36
- 2026-09-14: 36
- 2026-09-13: 36
- 2026-09-12: 36
- 2026-09-11: 36
- 2026-09-10: 36
- 2026-09-09: 36
- 2026-09-08: 63

## Common questions

### What is the Razi Document Tools MCP server?

Razi Document Tools is an MCP server listed in the public MCP registry as io.github.razikallayi/razi-documents. Document processing over MCP: merge, split and compress PDFs, run OCR, extract document text. This page covers its hosted endpoint (https://www.razi.pro/api/mcp/documents).

### Is the Razi Document Tools MCP server safe to use?

Razi Document Tools scores 36 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Razi Document Tools MCP server expose?

Razi Document Tools exposes 5 tools: merge_pdf, split_pdf, compress_pdf, extract_text_ocr, parse_document. Their descriptions and schemas cost roughly 974 tokens of context every time the server is loaded.

### Does the Razi Document Tools MCP server require authentication?

Yes. Razi Document Tools asked us for credentials when we connected, so you will need to authorise it in your MCP client before it can do anything.

### Is the Razi Document Tools MCP server still maintained?

Razi Document Tools is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://www.razi.pro/api/mcp/documents
- Repository: https://github.com/razikallayi/razikallayi.com
- Website: https://www.razi.pro/developer
- Changelog RSS feed: https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents.xml
- Changelog JSON feed: https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents.json
- HTML version of this page: https://verifymcp.io/servers/razikallayi-razi-documents/api-mcp-documents
