nutrient-document-processing

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

1|Updated Oct 11, 2025
One-click install
npx skills add https://github.com/ibytechaos/claude --skill nutrient-document-processing-ibytechaos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nutrient-document-processing
Source: https://github.com/ibytechaos/claude/tree/main/plugins/everything-claude-code/skills/nutrient-document-processing
Command: npx skills add https://github.com/ibytechaos/claude --skill nutrient-document-processing-ibytechaos

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Document workflows often require converting between formats, extracting text from scanned files, removing sensitive data, or filling PDF forms manually. This Skill provides curl-based recipes for the Nutrient DWS Processor API to handle these operations programmatically. ## 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, or extract text and tables as plain text or Excel files. - Redaction, Signing, and Forms: Redact PII using presets or regex, add watermarks, apply CMS digital signatures, and fill PDF form fields. - 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 assistant to convert a DOCX file to PDF 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 API returns the converted PDF, and the same pattern works for HTML, XLSX, and image inputs.

How to OCR a scanned PDF to make it searchable?

Use the Nutrient OCR action with a language parameter such as english or an ISO 639-2 code like deu or jpn. The API supports over 100 languages and returns a searchable PDF with an embedded text layer.

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 include PDF, DOCX, XLSX, and plain text.

Can I redact PII from PDFs automatically?

Yes, the redaction action supports presets for social security numbers, email addresses, credit cards, phone numbers, URLs, and IP addresses. You can also supply custom regex patterns for organization-specific identifiers.

Is there an MCP server alternative to curl for Nutrient?

Yes, the @nutrient-sdk/dws-mcp-server npm package provides native tool integration. Configure it in your MCP settings with the NUTRIENT_DWS_API_KEY environment variable and a sandbox working directory.