From 32b3e683edabf28e63f07ee25209eb5570341c35 Mon Sep 17 00:00:00 2001 From: Jonathan Rhyne Date: Thu, 5 Mar 2026 00:19:14 -0500 Subject: [PATCH 1/2] docs: align MCP positioning and fix clone path --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a41928..30b52dc 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,19 @@ This MCP server exposes document processing capabilities through natural language, supporting both direct human interaction and AI agent tool calling. +## Which MCP Server Should I Use? + +| Server | Best for | Deployment | Core capabilities | +|---|---|---|---| +| [Nutrient DWS MCP Server](https://github.com/PSPDFKit/nutrient-dws-mcp-server) | Cloud document workflows | Nutrient-hosted API (API key) | Convert, OCR, redact, sign, extract, watermark, automation | +| [Nutrient Document Engine MCP Server](https://github.com/PSPDFKit/nutrient-document-engine-mcp-server) | Self-hosted document workflows | On-prem/private cloud | Document processing with deployment control and data residency | +| [Nutrient PDF MCP Server](https://github.com/PSPDFKit/nutrient-pdf-mcp-server) | Low-level PDF inspection/debugging | Local Python runtime | Object-tree exploration, indirect-object resolution, structural analysis | + +You are in the **Document Engine MCP Server** repo. Choose this when you need self-hosted/on-prem document workflows and deployment control. + +- Ecosystem overview: [Nutrient AI Infrastructure](https://www.nutrient.io/ai/infrastructure/) +- Product landing page: [Nutrient MCP Server](https://www.nutrient.io/mcp-server-pdf-automation-llm/) + ## Example Conversations Once configured, you (or your agent) can interact with documents through natural language: @@ -41,8 +54,8 @@ Nutrient Document Engine runs with an evaluation license by default. Please see Open a terminal window, then run: ```bash -git clone https://github.com/PSPDFKit/nutrient-document-engine-mcp.git -cd nutrient-document-engine-mcp +git clone https://github.com/PSPDFKit/nutrient-document-engine-mcp-server.git +cd nutrient-document-engine-mcp-server docker-compose up -d ``` From 43e5c0a919b6a8781b692e87740249e4f9bf9613 Mon Sep 17 00:00:00 2001 From: Jonathan Rhyne Date: Thu, 5 Mar 2026 09:46:40 -0500 Subject: [PATCH 2/2] Remove Nutrient PDF MCP Server from README Removed Nutrient PDF MCP Server entry from the README. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 30b52dc..3d0f725 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ This MCP server exposes document processing capabilities through natural languag |---|---|---|---| | [Nutrient DWS MCP Server](https://github.com/PSPDFKit/nutrient-dws-mcp-server) | Cloud document workflows | Nutrient-hosted API (API key) | Convert, OCR, redact, sign, extract, watermark, automation | | [Nutrient Document Engine MCP Server](https://github.com/PSPDFKit/nutrient-document-engine-mcp-server) | Self-hosted document workflows | On-prem/private cloud | Document processing with deployment control and data residency | -| [Nutrient PDF MCP Server](https://github.com/PSPDFKit/nutrient-pdf-mcp-server) | Low-level PDF inspection/debugging | Local Python runtime | Object-tree exploration, indirect-object resolution, structural analysis | You are in the **Document Engine MCP Server** repo. Choose this when you need self-hosted/on-prem document workflows and deployment control.