Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Suparse Document Processing

NPM · @SUPARSE/MCP · SCANNED AUG 3

Extract structured data from PDFs and documents with Suparse AI OCR.

Available components

+22 this week 66 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability61
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 1100 tokens (~183/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @suparse/mcp

# add to Claude Code
claude mcp add suparse-suparse-mcp -- npx -y @suparse/mcp
# add to Codex CLI
codex mcp add suparse-suparse-mcp -- npx -y @suparse/mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "suparse-suparse-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@suparse/mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add suparse-suparse-mcp --command npx --arg -y --arg @suparse/mcp
# ~/.hermes/config.yaml
mcp_servers:
  suparse-suparse-mcp:
    command: "npx"
    args: ["-y", "@suparse/mcp"]
// mcp.json
{
  "mcpServers": {
    "suparse-suparse-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@suparse/mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +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.

  • 2 Aug 26 +46
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • Security disclosure: fail → unverified functional
    • Tool coverage: 100 → unverified functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Stability: unverified → 0.20 functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → good functional
    • First check of Schema quality: unverified functional
    • Licence: MIT functional
  • 31 Jul 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 44

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@suparse/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 96 packages

96 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 6 exposed · ~1,100 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
delete_documents ~58

Delete one or more documents from Suparse by document ID.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
document_idsarrayyesSuparse document IDs to delete.
NameTypeReqDescription
deletedbooleanyes
document_idsarrayyes

No examples provided.

download_results ~210

Fetch an export for one or more Suparse document IDs and write it directly to local disk. Use this for CSV, XLSX, Google Sheets, and saved JSON files. Do not call fetch_json_results unless you intentionally need full JSON in the MCP response. If output_path is a directory, the API-provided filename is used inside that directory. If cleanup is needed, call delete_documents after this tool succeeds.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
document_idsarrayyesSuparse document IDs to export.
export_typestringExport mode for csv, xlsx, and google_sheets. Defaults to unified.
formatstringyesExport format to write to local disk. Use this tool for csv and xlsx.
output_pathstringOptional local output file path or existing directory. When omitted, writes to the current working directory using the API-provided or generated filename.
NameTypeReqDescription
document_idsarrayyes
export_typestringyes
formatstringyes
output_pathstringyes

No examples provided.

extract_file ~268

Process one local document through Suparse. Defaults to result_mode defer, which uploads and polls only, then returns compact task_id/document_ids for later download_results. Use result_mode return_json only when you need the full JSON extraction in the MCP response. cleanup is only valid with return_json.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
cleanupbooleanOnly valid with result_mode return_json. Deletes processed Suparse documents after JSON results are returned, so later exports cannot be fetched from those document IDs.
file_pathstringyesLocal path to a supported document file.
result_modestringControls whether extraction results in json format are returned directly. Use return_json only when you need the full JSON extraction in the MCP response. In all other cases you can retrieve the resu…
splitbooleanEnable auto-splitting of multi-page documents with mixed document types.
template_idstringOptional extraction template ID. Use only a non-system team template ID from list_templates. Do not pass system template IDs directly; ask the user to add the matching system template to their templa…
NameTypeReqDescription
failedarrayyes
result_modestringyes
succeededarrayyes
totalnumberyes

No examples provided.

extract_folder ~272

Process all supported files in an immediate local folder through Suparse. Defaults to result_mode defer, which uploads and polls only, then returns compact task_id/document_ids for later download_results. Use result_mode return_json only when you need full JSON extractions in the MCP response. cleanup is only valid with return_json.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
cleanupbooleanOnly valid with result_mode return_json. Deletes processed Suparse documents after JSON results are returned, so later exports cannot be fetched from those document IDs.
folder_pathstringyesLocal folder containing supported document files.
result_modestringControls whether extraction results in json format are returned directly. Use return_json only when you need the full JSON extraction in the MCP response. In all other cases you can retrieve the resu…
splitbooleanEnable auto-splitting of multi-page documents with mixed document types.
template_idstringOptional extraction template ID. Use only a non-system team template ID from list_templates. Do not pass system template IDs directly; ask the user to add the matching system template to their templa…
NameTypeReqDescription
failedarrayyes
result_modestringyes
succeededarrayyes
totalnumberyes

No examples provided.

fetch_json_results ~131

Fetch JSON extraction results for one or more Suparse document IDs directly in the MCP response. This can be large; use only when you need the full JSON in context. For CSV, XLSX, Google Sheets, or saved JSON files, use download_results. If you need cleanup after fetching, call delete_documents after this tool succeeds.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
document_idsarrayyesSuparse document IDs to export.
export_typestringExport mode for JSON results. Defaults to unified.
NameTypeReqDescription
export_typestringyes
formatstringyes
resultsarrayyes

No examples provided.

list_templates ~161

List extraction templates for choosing an extraction template. Agents must use team_templates for processing. System templates are discovery-only in MCP: if a matching system template exists but no matching team template exists, ask the user to add that system template to their templates in the Suparse UI before processing. If no matching team or system template exists, ask the user to create a custom extraction schema for that document type in the Suparse UI.

NameTypeReqDescription
api_urlstringOptional API base URL. Defaults to SUPARSE_API_URL or Suparse production API.
include_systembooleanInclude discovery-only system templates in addition to team templates. System templates returned here are not directly usable for extraction through MCP until the user adds them to their templates in…
NameTypeReqDescription
agent_guidancestringyes
system_templatesarrayyes
team_templatesarrayyes
templatesarrayyes

No examples provided.