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.

Supported

Document operations

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

Setup

Install in 3 steps

No npm install needed — the server runs via npx on demand.

1

Copy the config snippet

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

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.