streamable-httpMITupdated 13d ago
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.
What can you do with DocuQueue MCP?
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-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 | 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 |
Quick Start
Option 1: Hosted (Recommended)
No installation required. Add this URL to your AI client:
https://docuqueue.com/mcp/sse
Option 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-mcp
Client Integration
Claude.ai (Hosted)
- Go to Settings ā Connectors ā Add custom connector
- Paste:
https://docuqueue.com/mcp/sse - Click 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-mcp
Codex
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/sse - Add header:
Authorization: Bearer YOUR_API_KEY
Available Tools
Templates
| 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 |
Document Generation
| 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 |
Branding
| 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 |
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 | 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 |
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 |
|---|---|---|
DOCUQUEUE_API_KEY |
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 template - Preview ā Use
preview_templateto see how it looks with your data - Generate ā Use
fill_templateto create the PDF - Download ā 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 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 |
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 install
Run Locally
# Development mode with hot reload
npm run dev
# Or build and run
npm run build
npm start
Test
npm test
Project 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 types
License
MIT
Links
- Website: docuqueue.com
- MCP page: docuqueue.com/mcp
- API docs: docuqueue.com/redoc
- GitHub: github.com/docuqueue/docuqueue-mcp
- Issues: github.com/docuqueue/docuqueue-mcp/issues
Install
Add DocuQueue MCP to your client. Pick the one you use.
claude mcp add --transport http docuqueue-mcp https://docuqueue.com/mcp/ssecodex mcp add docuqueue-mcp --url https://docuqueue.com/mcp/sse{
"mcpServers": {
"docuqueue-mcp": {
"url": "https://docuqueue.com/mcp/sse"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"docuqueue-mcp": {
"type": "http",
"url": "https://docuqueue.com/mcp/sse"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"docuqueue-mcp": {
"url": "https://docuqueue.com/mcp/sse"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"docuqueue-mcp": {
"serverUrl": "https://docuqueue.com/mcp/sse"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 6 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 20, 2026 |
| 0.1.1 | Aug 10, 2026 |
| 0.1.0 | Aug 10, 2026 |