Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@ Server-side PDF processing and manipulation:
- [AI Document Assistant](https://github.com/PSPDFKit/ai-document-assistant-demo) — Natural language PDF interaction with AI
- [Document Generator (Vanilla JS)](./web/document-generator-vanillajs/) — Step-by-step PDF generation with Document Authoring SDK

### MCP Servers Hub

- [Nutrient DWS MCP Server](https://github.com/PSPDFKit/nutrient-dws-mcp-server) — Connect AI assistants to Nutrient Document Web Services for OCR, redaction, signing, conversion, and watermarking (high-level workflow tools).
- [Nutrient Document Engine MCP Server](https://github.com/PSPDFKit/nutrient-document-engine-mcp-server) — Connect agents to self-hosted Document Engine for document discovery, extraction, editing, annotations, and redaction.
- [Nutrient PDF MCP Server](https://github.com/PSPDFKit/nutrient-pdf-mcp-server) — Low-level PDF object-tree exploration/debugging; use this for structural inspection rather than end-to-end processing workflows.
- [Nutrient MCP overview](https://www.nutrient.io/mcp-server-pdf-automation-llm) — Product overview and setup guidance.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: Consider putting the website overview at the top of the list


---

## Mobile SDKs
Expand Down
34 changes: 17 additions & 17 deletions web/document-generator-vanillajs/app/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<html>
<html lang="en">
<head>
<!-- Picnic CSS Framework -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic" />
Expand All @@ -20,7 +20,7 @@
<body>
<nav class="demo">
<a id="theTitle" href="#" class="brand">
<img class="logo" src="assets/nutrient.jpg" />
<img class="logo" src="assets/nutrient.jpg" alt="Nutrient logo" />
<span>Document Generator</span>
</a>
</nav>
Expand All @@ -45,12 +45,12 @@ <h3>DEMO</h3>
<h3>Checklist</h3>
</header>
<p class="nutri-template">
<img src="./assets/checklist.png" />
<img src="./assets/checklist.png" alt="Checklist template preview" />
</p>
<p>Create a checklist with predefined data.</p>
<footer>
<div style="text-align: right;">
<button class="nutri-button-dark" data-tpl="checklist">Edit Template →</button>
<button type="button" class="nutri-button-dark" data-tpl="checklist">Edit Template →</button>
</div>
</footer>
</article>
Expand All @@ -61,12 +61,12 @@ <h3>Checklist</h3>
<h3>Invoice</h3>
</header>
<p class="nutri-template">
<img src="./assets/invoice.png" />
<img src="./assets/invoice.png" alt="Invoice template preview" />
</p>
<p>Create an invoice with predefined data.</p>
<footer>
<div style="text-align: right;">
<button class="nutri-button-dark" data-tpl="invoice">Edit Template →</button>
<button type="button" class="nutri-button-dark" data-tpl="invoice">Edit Template →</button>
</div>
</footer>
</article>
Expand All @@ -77,12 +77,12 @@ <h3>Invoice</h3>
<h3>Menu</h3>
</header>
<p class="nutri-template">
<img src="./assets/menu.png" />
<img src="./assets/menu.png" alt="Menu template preview" />
</p>
<p>Create a menu with predefined data.</p>
<footer>
<div style="text-align: right;">
<button class="nutri-button-dark" data-tpl="menu">Edit Template →</button>
<button type="button" class="nutri-button-dark" data-tpl="menu">Edit Template →</button>
</div>
</footer>
</article>
Expand All @@ -103,7 +103,7 @@ <h3>Upload document</h3>
</form>
<footer>
<div style="text-align: right;">
<button class="nutri-button-dark" data-tpl="custom">Upload & Edit Template →</button>
<button type="button" class="nutri-button-dark" data-tpl="custom">Upload & Edit Template →</button>
</div>
</footer>
</article>
Expand All @@ -122,10 +122,10 @@ <h2>(2/5) Edit DocJSON Template</h2>
<footer>
<div class="flex two">
<div>
<button class="nutri-button-dark" data-action="back-to-template-selection">← Select Template</button>
<button type="button" class="nutri-button-dark" data-action="back-to-template-selection">← Select Template</button>
</div>
<div style="text-align: right;">
<button class="nutri-button-dark" data-action="to-json-data">Prepare JSON Data →</button>
<button type="button" class="nutri-button-dark" data-action="to-json-data">Prepare JSON Data →</button>
</div>
</div>
</footer>
Expand All @@ -141,10 +141,10 @@ <h2>(3/5) Prepare JSON Data</h2>
<footer>
<div class="flex two">
<div>
<button class="nutri-button-dark" data-action="back-to-template-editor">← Edit Template</button>
<button type="button" class="nutri-button-dark" data-action="back-to-template-editor">← Edit Template</button>
</div>
<div style="text-align: right;">
<button class="nutri-button-dark" data-action="to-docx-editor">Generate DOCX →</button>
<button type="button" class="nutri-button-dark" data-action="to-docx-editor">Generate DOCX →</button>
</div>
</div>
</footer>
Expand All @@ -160,10 +160,10 @@ <h2>(4/5) Edit Generated DOCX</h2>
<footer>
<div class="flex two">
<div>
<button class="nutri-button-dark" data-action="back-to-edit-data">← Edit Data</button>
<button type="button" class="nutri-button-dark" data-action="back-to-edit-data">← Edit Data</button>
</div>
<div style="text-align: right;">
<button class="nutri-button-dark" data-action="generate-pdf">Generate PDF →</button>
<button type="button" class="nutri-button-dark" data-action="generate-pdf">Generate PDF →</button>
</div>
</div>
</footer>
Expand All @@ -179,10 +179,10 @@ <h2>(5/5) Final PDF</h2>
<footer>
<div class="flex two">
<div>
<button class="nutri-button-dark" data-action="back-to-edit-docx">← Edit DOCX</button>
<button type="button" class="nutri-button-dark" data-action="back-to-edit-docx">← Edit DOCX</button>
</div>
<div style="text-align: right;">
<button class="nutri-button-dark" data-action="download-pdf">Download PDF →</button>
<button type="button" class="nutri-button-dark" data-action="download-pdf">Download PDF →</button>
</div>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion web/document-generator-vanillajs/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<html>
<html lang="en">
<head>
<meta http-equiv='refresh' content='0; URL=/app'>
</head>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Expand Down
Loading