nutrient-document-processing

Convert, OCR, redact, sign, and fill documents using the Nutrient DWS API.

Updated Mar 18, 2026
One-click install
npx skills add https://github.com/freedom909/real-estate-saas --skill nutrient-document-processing-freedom909
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: nutrient-document-processing
Source: https://github.com/freedom909/real-estate-saas/tree/main/.trae/skills/nutrient-document-processing
Command: npx skills add https://github.com/freedom909/real-estate-saas --skill nutrient-document-processing-freedom909

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @nutrient-sdk/dws-mcp-server.

What problem does it solve? Manual document processing tasks like format conversion, OCR on scanned files, PII redaction, and PDF form filling are repetitive and error-prone. This Skill automates these operations through the Nutrient DWS Processor API using simple HTTP requests. ## Core Features & Use Cases - Format Conversion: Convert between PDF, DOCX, XLSX, PPTX, HTML, and image formats with a single API call. - OCR & Extraction: Turn scanned documents into searchable PDFs in 100+ languages and extract text or tables as plain text or Excel files. - Redaction, Signing & Forms: Redact PII using presets or regex, add watermarks, apply digital signatures, and fill PDF form fields programmatically. - Use Case: Before sharing a contract PDF externally, redact all social security numbers and email addresses, add a CONFIDENTIAL watermark, and apply a digital signature in one workflow. ## Quick Start Set the NUTRIENT_API_KEY environment variable and ask the AI to convert a DOCX file to PDF or redact sensitive information from a document using the Nutrient API.

Frequently Asked Questions about nutrient-document-processing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert DOCX to PDF with an API?▼

Send a multipart POST request to https://api.nutrient.io/build with the DOCX file and an instructions JSON specifying the file part. The Nutrient DWS API returns the converted PDF, and the same pattern works for PDF to DOCX or HTML to PDF.

How to OCR a scanned PDF to make it searchable?▼

Use the Nutrient API's ocr action with a language parameter such as english or an ISO 639-2 code. The API supports over 100 languages and outputs a searchable PDF with a text layer added to the scanned pages.

What file formats does the Nutrient DWS API support?▼

Supported inputs include PDF, DOCX, XLSX, PPTX, DOC, XLS, PPT, ODT, RTF, HTML, and images such as JPG, PNG, TIFF, HEIC, GIF, WebP, and SVG. Outputs can be PDF, DOCX, XLSX, or plain text depending on the instructions.

Can I redact PII from PDFs automatically?▼

Yes, the redaction action supports presets for social security numbers, email addresses, credit card numbers, phone numbers, URLs, and more. You can also supply a custom regex pattern to match domain-specific sensitive data.

Is there an alternative to curl for the Nutrient API?▼

Yes, the @nutrient-sdk/dws-mcp-server npm package provides an MCP server for native tool integration. Configure it with your NUTRIENT_DWS_API_KEY and a sandbox path instead of writing raw curl commands.