Description

An MCP server for interacting with a Paperless-NGX API server. This server provides tools for managing documents.

Installation

npx -y paperless-mcp
npm install paperless-mcp
git clone https://github.com/nloui/paperless-mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "paperless-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "paperless-mcp"
      ]
    }
  }
}