惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
博客园 - 司徒正美
博客园 - Franky
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
量子位
博客园 - 叶小钗
博客园_首页
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Inside Nutrient

A guide to the invisible work behind documents Introducing Nutrient Documents for Salesforce: Native document generation and signing Document AI vs. traditional OCR: Choosing between OCR, AI, and hybrid pipelines PDF SDK compliance and security evaluation checklist for enterprise teams (2026) Invariant Corp replaces paper processes with Nutrient Workflow and scales without limits What is process mapping? A complete guide Nutrient vs. Conga Composer for Salesforce document generation (2026) Document routing: How to automate document distribution The CTO’s AI playbook: Why accountability architecture beats orchestration Compliance workflow automation: Why built-in compliance is table stakes Workflow diagrams: Examples, symbols, and how to build one that actually runs Digital forms: Replace paper forms with automated workflows Approval workflow software: How to automate approvals Why document-centric automation is different The CEO’s AI playbook: Why decision architecture beats model selection Nutrient SDK product updates for Q1 2026 PDF redaction verification: How to prove sensitive data is permanently removed What is a VPAT? The complete guide to accessibility conformance reports What is PDF/UA? The accessible PDF standard explained Salesforce eSignatures: Generate, sign, and track documents in one flow Online document viewer: Options, tradeoffs, and how to embed one Document viewer for web apps: React, Vue, Angular (2026) Best document viewers in 2026: A buyer’s guide How to edit a PDF in Python: Add text, images, and annotations Nutrient advances Workflow platform with agentic AI for enterprise-grade speed and consistency in document-heavy operations How to create a Salesforce quote template from opportunity data The business case for accessibility: Five ways it drives enterprise value Python PDF library comparison (2026): 7 libraries for developers Why your AI agent hallucinates PDF table data PDF.js limitations: When to upgrade to a commercial PDF SDK
Nutrient DWS MCP Server — Create and edit documents with ...
Nick Winder · 2025-05-16 · via Inside Nutrient

Table of contents

    Nutrient DWS MCP Server — Create and edit documents with natural language

    After countless brainstorming sessions — sprinkled with midnight snacks and notebook scribbles — we’re thrilled to jump on board the MCP Server train with our own open source solution!

    TL;DR

    MCP + Nutrient DWS Processor API(opens in a new tab) = document processing, editing, conversion, and signing capabilities using natural language — a powerful combination!

    What is Nutrient DWS MCP Server?

    Nutrient DWS MCP Server is an open source solution that allows you to process documents using natural language. By connecting Nutrient DWS MCP Server to your favorite MCP client (like Claude Desktop(opens in a new tab)), you can:

    • Batch process documents using natural language. Just watch and wait… or make a coffee.
    • Avoid writing scripts or glue code to handle your document processing needs. Just ask in plain language.
    • Access document processing features that are often difficult to find or are buried inside expensive software.

    Features overview

    FeatureDescription
    Document creationMerge PDFs, Office documents, and images
    EditingWatermark, rotate, flatten, redact, and more
    Format conversionPDF ⇄ DOCX, images, PDF/A support
    Digital signingAdd PAdES standards-compliant digital signatures using trusted certificates
    Data extractionExtract text, tables, or structured content
    SecurityRedaction presets, password protection, permission control
    Advanced OCRMulti-language image and scan recognition
    OptimizationCompress files without quality loss

    Getting started with Claude Desktop and Nutrient DWS MCP Server

    Get started with Nutrient DWS Processor API today and receive 50 free credits monthly! Perfect for watermark-free document processing targeting many use cases.

    1. Get a Nutrient DWS API key: Sign up at nutrient.io/api(opens in a new tab).
    2. Download Claude Desktop: If you haven’t already, download Claude Desktop(opens in a new tab) and sign in.
    3. Install Node.js: Install Node.js on the command line with a package manager like brew (brew install node).
    4. Configure Claude: Add your API key and set the directory you’d like to use as a sandbox in claude_desktop_config.json (~/Library/Application\ Support/Claude/claude_desktop_config.json on macOS).

    {

    "mcpServers": {

    "nutrient-dws": {

    "command": "npx",

    "args": [

    "-y",

    "@nutrient-sdk/dws-mcp-server",

    "--sandbox",

    "/your/sandbox/directory"

    ],

    "env": {

    "NUTRIENT_DWS_API_KEY": "YOUR_API_KEY_HERE"

    }

    }

    }

    }

    1. Restart Claude Desktop.
    2. Add documents for processing: Use any file manager to copy the documents into the sandbox directory set in the claude_desktop_config.json file above.
    3. Process documents: Instruct Claude Sonnet 3.7 (e.g. “redact all PII from secret.pdf”, “sign the document contract.pdf”, “merge secret.pdf and contract.pdf together”).

    All operations involve reading from and writing to files on disk. We strongly recommend using the sandboxed directory feature to enhance security and prevent data loss.

    Nutrient DWS MCP Server has been tested with Claude Desktop. Other MCP clients may work, but results may vary. Additionally, it only works with macOS for now. Feel free to open an issue in the GitHub repository(opens in a new tab) if you’re interested in Windows support.

    Use cases

    Are you still unsure what you’d use Nutrient DWS MCP Server for? Here are a few ideas.

    Contract automation and signatures

    • Batch-sign or watermark contracts/NDAs with branding
    • Merge scanned documents, flatten layers for archiving
    • Auto-extract terms, amounts, or dates via OCR

    Archival and compliance

    • Convert PDFs to PDF/A for legal storage
    • Redact PII with presets (emails, SSNs, credit cards)
    • Watermark and prep board decks for upload

    Content extraction and management

    • Extract tables or text to CSV for analysis/import
    • OCR from camera scans (receipts, business cards, notes)
    • Automate optimization prior to archiving

    To be honest, the possibilities are endless. The best way to see if it could work for you is to install Nutrient DWS MCP and ask Claude to do something with your documents.

    FAQ

    Why file-system-based? Direct binary transfers from the client aren’t yet supported in MCP (trust me I tried(opens in a new tab)), so clients such as Claude cannot send a file directly to an MCP server like Nutrient’s. We felt the sandbox is the next best option, and it enables the batch processing use case, which is a bonus!

    Why open source? Flexibility and community contributions! Adapt it to your workflows, send PRs, and propose new features.

    Feedback and contributions

    We welcome your feedback, stories, PRs, and bug reports. There are likely many use cases we haven’t thought of yet, so dive into the code, submit an issue, or share your ideas. If you have questions, reach out to us — we’d love to hear from you!

    Explore related topics

    Try for free Ready to get started?

    Related Cloud articles

    Explore more