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

推荐订阅源

IT之家
IT之家
J
Java Code Geeks
小众软件
小众软件
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
量子位
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
L
LangChain Blog

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
Introducing Nutrient Document Engine MCP Server: AI-power...
Nick Winder · 2025-07-16 · via Inside Nutrient

Table of contents

    Introducing Nutrient Document Engine MCP Server: AI-powered PDF processing through natural language

    The future of document processing is here — and it speaks your language. Introducing Nutrient Document Engine MCP Server: a bridge between AI agents and document workflows, controlled entirely through natural language.

    What is Nutrient Document Engine MCP Server?

    Built on the Model Context Protocol (MCP)(opens in a new tab), the MCP Server allows clients and AI agents like Claude Desktop, LangGraph, and OpenAI interact with documents as if speaking to a document expert. There’s no need to write complex code or navigate clunky interfaces. You (or your agent) can request things like:

    • “Extract all form fields and highlight liability clauses”
    • “Merge reports and apply a company watermark”
    • “Redact social security numbers and email addresses”

    The MCP Server handles the complexity behind the scenes, translating your requests into precise operations using the robust Nutrient Document Engine.

    Getting started

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

    Prerequisites

    Step 1 — Launch Document Engine

    Start Nutrient Document Engine locally using Docker:

    # Clone the repository.

    git clone https://github.com/PSPDFKit/nutrient-document-engine-mcp-server

    cd nutrient-document-engine-mcp-server

    # Start Document Engine.

    docker-compose up -d

    This launches the engine at http://localhost:5000

    Step 2 — Configure Claude Desktop

    Add this to your Claude Desktop configuration (Settings > Developer > Edit Config):

    {

    "mcpServers": {

    "nutrient-document-engine": {

    "command": "npx",

    "args": ["-y", "@nutrient-sdk/document-engine-mcp-server"],

    "env": {

    "DASHBOARD_USERNAME": "admin",

    "DASHBOARD_PASSWORD": "password",

    "DOCUMENT_ENGINE_BASE_URL": "http://localhost:5000",

    "DOCUMENT_ENGINE_API_AUTH_TOKEN": "secret"

    }

    }

    }

    }

    Step 3 — Restart Claude Desktop

    To launch the MCP Server, restart Claude Desktop and ensure there are no errors at startup.

    Step 4 — Upload a document via the dashboard

    Navigate to http://localhost:5100/dashboard and enter the following credentials:

    • Username — admin
    • Password — password

    Drag and drop a document into the upload box, or click to select a document of your choice. Click Upload Documents to make it available to Document Engine.

    Nutrient Document Engine MCP Server Dashboard

    Step 5 — Start your document conversation

    In Claude, try something like:

    You: "Can you list all available documents?"

    Claude: [Lists documents with metadata]

    You: "Extract text from contract.pdf and highlight mentions of 'termination'"

    Claude: [Extracts text and applies highlights]

    Beyond Claude Desktop

    Claude Desktop is cool, but what’s more exciting about Document Engine MCP Server is its compatibility with AI agents. The MCP Server is built to work with popular agent frameworks such as:

    Real-world applications

    Nutrient Document Engine MCP Server unlocks a wide range of document capabilities, enabling you to extract content, process forms, add annotations, edit structure, or apply redactions.

    Here’s a glimpse of what’s possible:

    • Discover and manage documents — Search, filter, and view metadata.
    • Extract content — Pull out text (optionally with OCR), extract tables and key-value pairs, or search by patterns.
    • Work with annotations — Add highlights or notes, read existing annotations, and clean up unnecessary markups.
    • Automate form workflows — Extract field data, fill out forms, and evaluate form completion.
    • Edit documents — Split or merge files, duplicate pages, and add branded watermarks.
    • Secure your data — Detect and redact sensitive information like SSNs or emails, and ensure compliance.

    Each capability is exposed via a specialized tool within the server, allowing the LLM to discover the capability and call the tools dynamically to unlock use cases like the ones outlined below.

    Automate contract reviews by extracting key terms, highlighting clauses, and redacting sensitive information — processing hundreds of contracts in minutes.

    Financial compliance

    Scan financial docs for sensitive data, apply redactions, and generate reports — all through simple conversational commands.

    Report generation

    Merge multiple documents, apply branding, and organize content to produce professional reports.

    Form automation

    Extract data from claims, applications, or surveys, and save the results for the next stage in the workflow.

    Document assembly

    Build customized documents from templates, client data, and consistent formatting — at scale.

    Get started now

    Whether you’re looking to use Nutrient Document Engine MCP Server locally, hosted on your server, or even hosted by Nutrient(opens in a new tab), we’ve got you covered.

    • MCP transport — stdio and streamable HTTP are both supported.
    • Deployment — Install directly from npm(opens in a new tab), or build a Docker image(opens in a new tab) to deploy on your infrastructure.
    • Open source — Don’t see something you like? Jump in, fork it, and create a PR. This MCP Server is open source, so you’re free to change it in any way you wish!

    Have questions or want help getting started? Reach out to us — we’re happy to support your setup.

    Explore related topics

    Try for free Ready to get started?

    Related Cloud articles

    Explore more