nutrient-document-processing

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

Updated Mar 25, 2026
One-click install
npx skills add https://github.com/Femad-6/my-skills --skill nutrient-document-processing-femad-6
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nutrient-document-processing
Source: https://github.com/Femad-6/my-skills/tree/main/.github/skills/nutrient-document-processing
Command: npx skills add https://github.com/Femad-6/my-skills --skill nutrient-document-processing-femad-6

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 curl commands or an MCP server. ## Core Features & Use Cases - Format Conversion: Convert between PDF, DOCX, XLSX, PPTX, HTML, and image formats with a single API call. - OCR and Extraction: Turn scanned documents into searchable PDFs in 100+ languages and extract text or tables as plain text or Excel files. - Redaction and Signing: Remove PII using presets (SSN, email, credit card) or regex, add watermarks, apply digital signatures, and fill PDF forms 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 your NUTRIENT_API_KEY environment variable and ask the assistant to convert a DOCX file to PDF or redact sensitive information from a document.

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 API returns the converted PDF, and the same pattern works for HTML to PDF and PDF to DOCX conversions.

How to redact PII from PDF documents automatically?

Use the redaction action with preset strategies like social-security-number, email-address, or credit-card-number, or supply a custom regex pattern. The Nutrient API applies the redactions and returns a sanitized PDF in a single request.

Does the Nutrient API support OCR for scanned documents?

Yes, the OCR action converts scanned PDFs into searchable documents and supports over 100 languages via ISO 639-2 codes such as eng, deu, jpn, and chi_sim. Full language names like english or german also work.

What file formats does Nutrient document processing support?

Supported inputs include PDF, DOCX, XLSX, PPTX, DOC, XLS, PPT, ODT, RTF, HTML, and images such as JPG, PNG, TIFF, HEIC, GIF, WebP, SVG, and EPS. Outputs include PDF, DOCX, plain text, and XLSX for extracted tables.

Can I use Nutrient document processing without curl?

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