Back to Browse

Mcp MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Parse a document into structured, confidence-scored fields. Bring your own model, pay per scan.

About

Parse a document into structured, confidence-scored fields. Bring your own model, pay per scan.

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-structured MCP server that wraps the ParseRelay document scanning API. Authentication is properly required via API keys (environment variables or Bearer tokens), input validation is thorough with Zod schemas, and error handling is appropriate. The codebase is clean with no malicious patterns, hardcoded secrets, or dangerous operations. Minor code quality observations exist but do not materially impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (2 critical, 3 high severity). Package verification found 1 issue.

7 files analyzed · 10 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

ParseRelay API key (prl_live_…). Required for stdio.Required

Environment variable: PARSERELAY_API_KEY

API base URL. Defaults to https://api.parserelay.app; point at a local worker for testing.Optional

Environment variable: PARSERELAY_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-parserelay-mcp": {
      "env": {
        "PARSERELAY_API_KEY": "your-parserelay-api-key-here",
        "PARSERELAY_BASE_URL": "your-parserelay-base-url-here"
      },
      "args": [
        "-y",
        "@parserelay/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@parserelay/mcp

ParseRelay's scan operation as an MCP tool — so any MCP host (Claude Desktop, Cursor, …) can parse a document into structured, confidence-scored fields. Same contract as the REST API and the <DeadSimpleMicroScanner> component; one tool, scan.

The scan tool

Input mirrors the sync ScanRequestimage (required), plus schema, doc_type, engine, ocr, dry_run, model, model_key. (relay webhooks are omitted: a tool call is synchronous, so you get the envelope back inline.) The result is the full ScanEnvelope as JSON: fields, per-field confidence, needs_review, field_source, and meta (engine, credits, tokens).

Set dry_run: true to preview which fields would trigger a paid rescue — and the estimated credits — without spending anything.

Run it

stdio (Claude Desktop, Cursor)

{
  "mcpServers": {
    "parserelay": {
      "command": "npx",
      "args": ["-y", "@parserelay/mcp"],
      "env": {
        "PARSERELAY_API_KEY": "your-key",
        "PARSERELAY_BASE_URL": "https://api.parserelay.app" // optional
      }
    }
  }
}

streamable-HTTP (remote / hosted)

PARSERELAY_API_KEY=your-key PORT=8080 node node_modules/@parserelay/mcp/dist/http.js
# → POST http://localhost:8080/mcp

Stateless: a fresh server per request, so it scales horizontally. Auth per request via Authorization: Bearer <key>, falling back to PARSERELAY_API_KEY for single-tenant setups.

Programmatic

import { createMcpServer } from "@parserelay/mcp";
import { ParseRelayClient } from "@parserelay/client";

const server = createMcpServer(new ParseRelayClient({ apiKey }));
// then wire your own transport: await server.connect(transport)

Config

Env varRequiredDefaultNotes
PARSERELAY_API_KEYstdio: yesHTTP can override per request via Authorization: Bearer.
PARSERELAY_BASE_URLnohttps://api.parserelay.appPoint at a local worker for testing.
PORTno8080HTTP transport only.

Reviews

No reviews yet

Be the first to review this server!