DocuQueue MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DocuQueue MCP ServerCreate an invoice for Acme Corp, 3 widgets at $50 each, 10% tax"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DocuQueue — MCP Document Generation Server
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.
TL;DR
claude mcp add docuqueue -e DOCUQUEUE_API_KEY=your_api_key -- npx docuqueue-mcpRelated MCP server: docforge-mcp
Features
Template Management: Browse, create, and preview document templates
PDF Generation: Fill templates with data and generate PDFs instantly
Form Filling: Auto-detect and fill PDF form fields (W-9, W-4, contracts)
Batch Processing: Generate multiple documents from CSV/Excel data
Brand Extraction: Extract colors, fonts, and logos from any website
DOCX Support: Upload and use Word documents as templates
Tool Annotations: Read-only and destructive operations clearly marked
Common Forms
Fill and generate these popular forms directly from AI chat:
Form | Description | Link |
W-9 | Request for Taxpayer Identification Number | |
W-4 | Employee's Withholding Certificate | |
I-9 | Employment Eligibility Verification | |
1040 | U.S. Individual Income Tax Return |
Quick Start
Option 1: Hosted (Recommended)
No installation required. Add this URL to your AI client:
https://docuqueue.com/mcp/sseOption 2: Local Install
# Claude Code
claude mcp add docuqueue -e DOCUQUEUE_API_KEY=your_api_key -- npx docuqueue-mcp
# Or install globally
npm install -g docuqueue-mcpClient Integration
Claude.ai (Hosted)
Go to Settings → Connectors → Add custom connector
Paste:
https://docuqueue.com/mcp/sseClick Authorize in the browser popup
Start generating documents
Claude Desktop
Add to ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"docuqueue": {
"command": "npx",
"args": ["docuqueue-mcp"],
"env": {
"DOCUQUEUE_API_KEY": "your_api_key"
}
}
}
}Claude Code
claude mcp add docuqueue -e DOCUQUEUE_API_KEY=your_api_key -- npx docuqueue-mcpCodex
Add to ~/.codex/config.toml:
[mcp_servers.docuqueue]
command = "npx"
args = ["docuqueue-mcp"]
[mcp_servers.docuqueue.env]
DOCUQUEUE_API_KEY = "your_api_key"OpenCode
Add to ~/.config/opencode/opencode.jsonc:
{
"mcp": {
"docuqueue": {
"type": "local",
"command": ["npx", "docuqueue-mcp"],
"env": {
"DOCUQUEUE_API_KEY": "your_api_key"
}
}
}
}Cursor / Windsurf
Add to ~/.cursor/mcp.json or ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"docuqueue": {
"command": "npx",
"args": ["docuqueue-mcp"],
"env": {
"DOCUQUEUE_API_KEY": "your_api_key"
}
}
}
}ChatGPT
Go to Settings → Connectors → Add custom connector
Enter URL:
https://docuqueue.com/mcp/sseAdd header:
Authorization: Bearer YOUR_API_KEY
Available Tools
Templates
Tool | Description | Annotations |
| Browse available document designs | Read-only |
| Design a new document layout | Write |
| See how your document will look | Read-only |
| Use your own Word document as a design | Write |
Document Generation
Tool | Description | Annotations |
| Create a document with your data | Write |
| Check if your document is ready | Read-only |
| Get your finished document | Read-only |
Branding
Tool | Description | Annotations |
| Match your company's visual style from their website | Read-only (external) |
| View your saved style settings | Read-only |
Comparison with Other MCP Document Servers
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 | ✓ | ✗ | ✗ | ✓ |
Tool Annotations
DocuQueue MCP tools include MCP ToolAnnotations so clients can:
Distinguish read-only tools from write-capable tools
Understand which operations are destructive
Identify tools that access external resources
Tool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Usage Examples
Each example is a prompt you can paste directly into your AI chat:
Generate an invoice
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.
Generate a certificate
Create a certificate for John Doe, completed the Python bootcamp on August 12, 2026
Generate a contract
Create an NDA between Acme Corp and Globex Corp, effective January 1, 2026
Fill a form
Fill in this W-9 form: name "Acme Corp", EIN "12-3456789", address "123 Main St"
Extract branding from a website
Extract the brand colors and fonts from https://stripe.com
Generate a receipt
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 a custom template
Upload this Word document as a template: /path/to/contract.docx
Configuration
Environment Variable | Required | Description |
| Yes* | Your DocuQueue API key |
*Not required when using hosted OAuth mode.
Get your API key from docuqueue.com/dashboard.
How It Works
Connect — Add the MCP server to your client with your API key
Browse — Use
list_templatesto find a templatePreview — Use
preview_templateto see how it looks with your dataGenerate — Use
fill_templateto create the PDFDownload — Use
download_pdfto get the finished document
Troubleshooting
Symptom | Fix |
Authentication error | Ask the AI: "re-authenticate with DocuQueue" |
Connection refused | Check the server URL is |
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 |
Privacy
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.
Development
Prerequisites
Node.js 18+
npm or yarn
Setup
git clone https://github.com/docuqueue/docuqueue-mcp.git
cd docuqueue-mcp
npm installRun Locally
# Development mode with hot reload
npm run dev
# Or build and run
npm run build
npm startTest
npm testProject Structure
src/
├── index.ts # Local MCP server (stdio)
├── remote.ts # Remote MCP server (SSE/HTTP)
├── config.ts # Configuration management
├── tools/ # Tool implementations
│ ├── listTemplates.ts
│ ├── createTemplate.ts
│ ├── fillTemplate.ts
│ ├── previewTemplate.ts
│ ├── getStatus.ts
│ ├── downloadPdf.ts
│ ├── uploadDocxTemplate.ts
│ └── uploadPdf.ts
├── branding/ # Brand extraction
├── api/ # API client
├── errors/ # Error handling
└── types/ # TypeScript typesLicense
MIT
Links
Website: docuqueue.com
MCP page: docuqueue.com/mcp
API docs: docuqueue.com/redoc
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityCmaintenancePDF/DOCX/Excel generation from HTML/Markdown with stationery overlay, ZUGFeRD/XRechnung e-invoicing, digital signing, form filling, and AI receipt OCR with DATEV/SKR03 export.40MIT- AlicenseBqualityDmaintenanceEnables complete Office document lifecycle management for AI agents, including creation, editing, conversion, and templating of DOCX, XLSX, PPTX, PDF, and EML files.40MIT
- AlicenseNot gradedqualityDmaintenanceEnables PDF and image generation from templates, JSON, HTML, or URLs through the PDF Gen Studio API. Supports rendering, template management, and multiple output formats.121MIT

documenteroofficial
AlicenseNot gradedqualityCmaintenanceEnables AI agents to list Documentero templates, inspect their field schemas, and generate Word/PDF/Excel documents via the Documentero API.49MIT
Related MCP Connectors
Document API for AI-native software: render PDFs, e-sign, PAdES-seal, and verify.
Generate PDF/DOCX/XLSX/PPTX from templates+JSON. Convert Office/HTML/MD to PDF. Universal templating
Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docuqueue/docuqueue-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server