The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the DocuQueue MCP listing page.
Generate PDFs, receipts, invoices, and manage documents from AI chat. Works with Claude, ChatGPT, Cursor, and any MCP-compatible client. MCP server for ecommerce receipts, invoices, contracts, and document generation.
MCP document generation lets AI assistants like Claude, ChatGPT, and Cursor create PDFs, contracts, and invoices directly from chat. The Model Context Protocol (MCP) connects your AI agent to a document generation API — no custom integration code required. DocuQueue is an MCP server that exposes tools like generate_document, fill_template, and batch_generate for any MCP-compatible client.
Fill and generate these popular forms directly from AI chat:
| Form | Description | Link |
|---|---|---|
| W-9 | Request for Taxpayer Identification Number | Fill Online |
| W-4 | Employee's Withholding Certificate | Fill Online |
| I-9 | Employment Eligibility Verification | Fill Online |
| 1040 | U.S. Individual Income Tax Return | Fill Online |
No installation required. Add this URL to your AI client:
https://docuqueue.com/mcp/sseAdd to ~/.config/Claude/claude_desktop_config.json:
Add to ~/.codex/config.toml:
Add to ~/.config/opencode/opencode.jsonc:
Add to ~/.cursor/mcp.json or ~/.codeium/windsurf/mcp_config.json:
https://docuqueue.com/mcp/sseAuthorization: Bearer YOUR_API_KEY| Tool | Description | Annotations |
|---|---|---|
list_templates | Browse available document designs | Read-only |
create_template | Design a new document layout | Write |
preview_template | See how your document will look | Read-only |
upload_docx_template | Use your own Word document as a design | Write |
| Tool | Description | Annotations |
|---|---|---|
fill_template | Create a document with your data | Write |
get_status | Check if your document is ready | Read-only |
download_pdf | Get your finished document | Read-only |
| Tool | Description | Annotations |
|---|---|---|
extract_branding | Match your company's visual style from their website | Read-only (external) |
get_branding | View your saved style settings | Read-only |
| Feature | DocuQueue | DocsAutomator | Carbone | PDF Generator API |
|---|---|---|---|---|
| PDF generation | ✓ | ✓ | ✓ | ✓ |
| DOCX templates | ✓ | ✗ | ✗ | ✗ |
| PDF form filling | ✓ | ✗ | ✗ | ✗ |
| Batch processing | ✓ | ✓ | ✗ | ✓ |
| Free tier | 25 credits | Limited | ✓ | Sandbox |
| MCP server | ✓ | ✓ | ✓ | ✓ |
| Visual template editor | ✓ | ✗ | ✗ | ✓ |
DocuQueue MCP tools include MCP ToolAnnotations so clients can:
| Tool | readOnlyHint | destructiveHint | idempotentHint | openWorldHint |
|---|---|---|---|---|
list_templates | true | false | true | false |
create_template | false | false | false | false |
preview_template | true | false | true | false |
fill_template | false | false | false | false |
get_status | true | false | true | false |
download_pdf | true | false | true | false |
extract_branding | true | false | true | true |
get_branding | true | false | true | false |
upload_docx_template | false | false | false | false |
Each example is a prompt you can paste directly into your AI chat:
Create an invoice for Acme Corp, 3 widgets at $50 each, 10% tax
The AI will list templates, preview the invoice, generate the PDF, and return a download link.
Create a certificate for John Doe, completed the Python bootcamp on August 12, 2026
Create an NDA between Acme Corp and Globex Corp, effective January 1, 2026
Fill in this W-9 form: name "Acme Corp", EIN "12-3456789", address "123 Main St"
Extract the brand colors and fonts from https://stripe.com
Create a receipt for customer John Smith, order #ORD-2024-0892, 3x Widget Pro at $24.99 each, subtotal $74.97, tax $5.62, total $80.59, paid with Visa ending in 4242
Upload this Word document as a template: /path/to/contract.docx
| Environment Variable | Required | Description |
|---|---|---|
DOCUQUEUE_API_KEY | Yes* | Your DocuQueue API key |
*Not required when using hosted OAuth mode.
Get your API key from docuqueue.com/dashboard.
list_templates to find a templatepreview_template to see how it looks with your datafill_template to create the PDFdownload_pdf to get the finished document| Symptom | Fix |
|---|---|
| Authentication error | Ask the AI: "re-authenticate with DocuQueue" |
| Connection refused | Check the server URL is https://docuqueue.com/mcp/sse |
| Rate limited | Wait 1 minute, then retry |
| Template not found | Ask the AI to list templates first |
| Tool not appearing | Restart your MCP client after adding the server |
DocuQueue MCP is a remote server — your requests go to DocuQueue's servers and return generated PDFs. Authentication tokens are sent only to DocuQueue's services during OAuth login and API calls. Documents are generated on-the-fly and not stored indefinitely.
MIT