nudocs-mcp-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@nudocs-mcp-serverList my documents"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nudocs MCP Server
An MCP (Model Context Protocol) server for Nudocs.ai - a document processing service by Nutrient.
Features
This MCP server provides the following tools for working with Nudocs documents:
list_documents - List all Nudocs documents
read_document - Read document content as Markdown
get_document_access_link - Get a shareable access link to a document
download_document - Download documents in various formats
upload_file - Upload files to Nudocs
delete_document - Delete documents by ID
list_top_level_elements - List top-level elements with IDs and text previews
find_elements_by_text - Find element IDs by visible text
replace_paragraph_text - Replace paragraph text while preserving inline formatting when possible
insert_paragraph_text - Insert one plain-text paragraph at an anchor
insert_table - Insert a table from plain-text cells
move_element - Move one paragraph/table before or after a target paragraph
delete_element - Delete one paragraph, table, or image by ID
set_paragraph_style - Set paragraph style (
normal, headings, bullet/number list)insert_image - Insert one image from URL at an anchor
Recommended Edit Workflow
Discover IDs with
list_top_level_elementsorfind_elements_by_text.Apply the specific edit tool for the operation you want.
Verify result with
read_document.
All editing tools use object-only payloads and simple, LLM-friendly inputs.
{
"documentId": "01H...",
"text": "Anchor paragraph."
}{
"documentId": "01H...",
"id": "p-AAAAAAAAAAAAAAAAAAAAAA",
"text": "Updated text"
}{
"documentId": "01H...",
"anchorId": "p-AAAAAAAAAAAAAAAAAAAAAA",
"edge": "end",
"rows": [
["A1", "B1"],
["A2", "B2"]
]
}The first payload above is a complete find_elements_by_text call. The second is a
replace_paragraph_text call. The third is an insert_table call.
Successful edit responses include summary plus machine-readable metadata:
affectedElementIds, idMap, and invalidatedSelectors.
If Nudocs returns a conflict (EDIT_CONFLICT), the MCP error payload includes structured
details such as latest version/revision hints.
Supported File Formats
Input formats (upload):
Markdown (
.md)HTML (
.html,.xhtml)LaTeX (
.latex,.tex)reStructuredText (
.rst)Org mode (
.org)Textile (
.textile)DocBook XML
EPUB (
.epub)MediaWiki (
.wiki)Jupyter Notebook (
.ipynb)OpenDocument Text (
.odt)Microsoft Word (
.doc,.docx)Rich Text Format (
.rtf)Plain Text (
.txt)PDF (
.pdf)
Output formats (download):
Markdown (
.md)HTML (
.html,.xhtml)LaTeX (
.latex,.tex)PDF (
.pdf)reStructuredText (
.rst)Org mode (
.org)Textile (
.textile)DocBook XML
EPUB (
.epub)Microsoft Word (
.doc,.docx)OpenDocument Text (
.odt)Rich Text Format (
.rtf)Plain Text (
.txt)MediaWiki (
.wiki)AsciiDoc (
.adoc,.asciidoc)Jupyter Notebook (
.ipynb)
Related MCP server: Nutrient Document Engine MCP Server
Prerequisites
Node.js >= 18.0.0
A Nudocs account with an API key (sign up at nudocs.ai)
Configuration
Environment Variables
Set your Nudocs API key:
export NUDOCS_API_KEY=your_api_key_hereYou can find your API key in your Nudocs account settings.
Integration
Claude Desktop
Add this server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"nudocs": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/nudocs-mcp-server"],
"env": {
"NUDOCS_API_KEY": "your_api_key_here"
}
}
}
}After updating the configuration, completely quit and restart Claude Desktop. You'll see an MCP indicator in the bottom-right corner of the chat input when successfully connected.
Claude Code
Claude Code supports three configuration levels:
Local Configuration (Project-specific)
Create .mcp.json in your project root:
{
"mcpServers": {
"nudocs": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/nudocs-mcp-server"],
"env": {
"NUDOCS_API_KEY": "your_api_key_here"
}
}
}
}Global Configuration (All projects)
Create or edit ~/.claude.json:
{
"mcpServers": {
"nudocs": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/nudocs-mcp-server"],
"env": {
"NUDOCS_API_KEY": "your_api_key_here"
}
}
}
}Using the CLI
You can also use Claude Code's built-in configuration wizard:
claude mcp add --transport stdio nudocs --env NUDOCS_API_KEY=YOUR_KEY -- npx -y @nutrient-sdk/nudocs-mcp-serverOpenAI Codex
OpenAI Codex supports MCP servers through its CLI and IDE extension.
Using the CLI
The easiest way to add the Nudocs MCP server:
codex mcp add nudocs --env NUDOCS_API_KEY=YOUR_KEY -- npx -y @nutrient-sdk/nudocs-mcp-serverManual Configuration
Edit ~/.codex/config.toml to add the server:
[mcp.nudocs]
command = "npx"
args = ["-y", "@nutrient-sdk/nudocs-mcp-server"]
[mcp.nudocs.env]
NUDOCS_API_KEY = "your_api_key_here"The configuration file is shared between the Codex CLI and IDE extension, so you only need to configure it once.
For more information, visit the OpenAI Codex MCP documentation.
Development
Building from Source
npm install
npm run buildRunning Locally
npm run devUnit Tests
npm run test:unitTesting with MCP Inspector
The MCP Inspector allows you to test the server interactively:
npm run inspectorIssues & Support
Report issues at: https://github.com/PSPDFKit/nudocs-mcp-server/issues
License
See LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceEnables reading and editing Google Docs documents, including creating documents, inserting and deleting content, formatting text, and performing find-and-replace operations through natural language.581MIT
- Alicense-qualityDmaintenanceEnables AI agents and users to process documents through natural language, supporting PDF operations like text extraction, redaction, splitting, form filling, annotations, and content search.1861MIT
- FlicenseBqualityDmaintenanceEnables AI assistants to create, read, edit, and manage Google Docs and Drive files with support for formatting, comments, tables, images, and bulk operations.571
- AlicenseBqualityFmaintenanceEnables processing of Excel, Word, and PDF documents through reading, writing, and metadata extraction. It leverages a secure Pyodide WebAssembly environment to handle document parsing with support for paginated results.4151MIT
Related MCP Connectors
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
File uploads for AI agents. Upload, list, and manage files. No signup required.
Search, browse, and read your Dropbox files. Find documents by name or content, list folders, and…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PSPDFKit/nudocs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server