npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nutrient-sdk/nudocs-mcp-server

v0.0.1

Published

MCP server for Nudocs

Downloads

20

Readme

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

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)

Prerequisites

Configuration

Environment Variables

Set your Nudocs API key:

export NUDOCS_API_KEY=your_api_key_here

You 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-server

OpenAI 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-server

Manual 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 build

Running Locally

npm run dev

Testing with MCP Inspector

The MCP Inspector allows you to test the server interactively:

npm run inspector

Issues & Support

Report issues at: https://github.com/PSPDFKit/nudocs-mcp-server/issues

License

See LICENSE file for details.


Made by Nutrient | Powered by Nudocs.ai