MCP ServerModel Context Protocol

Use docu-suite from Claude or Cursor

Connect your AI assistant directly to docu-suite's document tools. Convert PDFs, merge files, enhance text, all from a natural language conversation without opening a browser.

Available

MCP tools

Five tools exposed by the MCP server. Claude calls these automatically based on your request.

convert_document
Async + auto-download

Upload a local file and convert it. Automatically polls until done and downloads the result to your output directory.

filePaths: string[]tool: ToolIdoptions?: object
enhance_text
AI-powered

Improve any piece of text with AI. Use a preset or write a custom instruction.

selectedText: stringinstruction: stringcontext?: object
🔍get_job_status

Poll the status of a document processing job by its ID.

jobId: string
📥download_result

Download the output file of a completed job to your machine.

jobId: stringdownloadToken: stringfileName: string
📋list_jobs

List your 50 most recent document processing jobs.

Package

docu-suite-mcp

Published on npm and ready to use in any MCP-compatible client.

Runtime

npx -y docu-suite-mcp

Recommended for Claude Desktop, Cursor, Zed, Windsurf, and similar clients.

Important

npm i docu-suite-mcp

Installs the package locally in the current folder. It does not auto-connect the server to Claude or install it globally.

Supported

Document operations

PDF → WordPDF → ExcelPDF → MarkdownCompress PDFMerge PDFsSplit PDFLock PDFUnlock PDFImage → PDFOCR / Text ExtractMarkdown → PDFMarkdown → WordWord → Markdown

Setup

Install in 3 steps

No separate install step is required for most users. MCP clients can run the server directly with npx -y docu-suite-mcp.

1

Copy the config snippet

Replace /Users/yourname/Downloads with the folder where you want converted files saved.

The config uses npx, which downloads and runs docu-suite-mcp on demand.

JSON
{
  "mcpServers": {
    "docu-suite": {
      "command": "npx",
      "args": ["-y", "docu-suite-mcp"],
      "env": {
        "DOCU_SUITE_URL": "https://ilovepdfdoc.com",
        "OUTPUT_DIR": "/Users/yourname/Downloads"
      }
    }
  }
}
2

Paste into your Claude Desktop config file

~/Library/Application Support/Claude/claude_desktop_config.json

If the file doesn't exist yet, create it. If it already has an mcpServers key, merge the docu-suite entry in.

3

Restart Claude Desktop

Quit and reopen Claude Desktop. The docu-suite tools will appear in the tool picker. Try asking:

Convert this PDF to Word
Merge these three PDFs into one
Make this paragraph more concise
Extract text from this scanned image

Also works with

Cursor & other MCP clients

Any tool that supports the Model Context Protocol can use this server. In Cursor, add the same config JSON to ~/.cursor/mcp.json. For other clients, consult their MCP documentation.

If someone runs npm i docu-suite-mcp in a terminal, npm installs the package in that current project only. To run it without wiring it into a project, use npx -y docu-suite-mcp or configure it inside an MCP client as shown above.