
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@nutrient-sdk/nudocs-mcp-server
Advanced tools
An MCP (Model Context Protocol) server for Nudocs.ai - a document processing service by Nutrient.
This MCP server provides the following tools for working with Nudocs documents:
Input formats (upload):
.md).html, .xhtml).latex, .tex).rst).org).textile).epub).wiki).ipynb).odt).doc, .docx).rtf).txt).pdf)Output formats (download):
.md).html, .xhtml).latex, .tex).pdf).rst).org).textile).epub).doc, .docx).odt).rtf).txt).wiki).adoc, .asciidoc).ipynb)Set your Nudocs API key:
export NUDOCS_API_KEY=your_api_key_here
You can find your API key in your Nudocs account settings.
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 supports three configuration levels:
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"
}
}
}
}
Create or edit ~/.claude.json:
{
"mcpServers": {
"nudocs": {
"command": "npx",
"args": ["-y", "@nutrient-sdk/nudocs-mcp-server"],
"env": {
"NUDOCS_API_KEY": "your_api_key_here"
}
}
}
}
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-server
OpenAI Codex supports MCP servers through its CLI and IDE extension.
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-server
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.
npm install
npm run build
npm run dev
The MCP Inspector allows you to test the server interactively:
npm run inspector
Report issues at: https://github.com/PSPDFKit/nudocs-mcp-server/issues
See LICENSE file for details.
FAQs
MCP server for Nudocs
The npm package @nutrient-sdk/nudocs-mcp-server receives a total of 70 weekly downloads. As such, @nutrient-sdk/nudocs-mcp-server popularity was classified as not popular.
We found that @nutrient-sdk/nudocs-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.