- Built from scratch: apollo, chargebee, datadog, greenhouse, lever, loom, pandadoc, salesloft, sendgrid, supabase, typeform, webflow, zoho-crm, twilio, reonomy - TSC fixes: brevo, google-console, housecall-pro, meta-ads, rippling, bamboohr, close, fieldedge, freshdesk, helpscout, toast, touchbistro, hubspot, notion, quickbooks, airtable, gusto, intercom, linear, monday, salesforce, shopify, square, wave, xero - Entry points added: close, touchbistro - All 65 active servers compile with 0 TypeScript errors - 4 specialty servers skipped (competitor-research, compliance-grc, n8n-apps, product-analytics)
5.3 KiB
5.3 KiB
PandaDoc MCP Server
MCP server for PandaDoc document automation - documents, templates, contacts, fields, content library, webhooks, workspaces.
Features
- 📄 Document Management - Create, send, track documents with e-signatures
- 📋 Templates - Build reusable document templates
- 👥 Contact Management - Organize recipients and contacts
- 📝 Field Management - Pre-fill and manage document fields
- 📚 Content Library - Reusable blocks, pricing tables, media
- 🔔 Webhooks - Real-time event notifications
- 🏢 Workspace Management - Multi-workspace support
Installation
npm install
npm run build
Configuration
Set your PandaDoc API key:
export PANDADOC_API_KEY='your_api_key_here'
Usage
Run the server:
npm start
# or
pandadoc-mcp-server
Add to Claude Desktop config:
{
"mcpServers": {
"pandadoc": {
"command": "node",
"args": ["/path/to/pandadoc/dist/index.js"],
"env": {
"PANDADOC_API_KEY": "your_api_key_here"
}
}
}
}
Available Tools
Document Tools (7)
list_documents- List documents with status/folder filtering, paginationget_document- Get document details with recipients, fields, pricingcreate_document- Create document from template or scratchupdate_document- Update draft document name, recipients, fieldssend_document- Send document to recipients via emaildelete_document- Permanently delete documentdownload_document- Get PDF download URL for completed docs
Template Tools (5)
list_templates- List templates with folder filteringget_template- Get template details, fields, rolescreate_template- Create reusable document templateupdate_template- Update template name, description, tagsdelete_template- Delete template (doesn't affect existing docs)
Contact Tools (5)
list_contacts- List contacts with email filteringget_contact- Get contact details and addresscreate_contact- Create new contactupdate_contact- Update contact informationdelete_contact- Delete contact
Field Tools (2)
get_document_fields- Get all document fields with types/valuesupdate_document_fields- Pre-fill document field values
Content Library Tools (4)
list_content_library- List reusable content items by typeget_content_library_item- Get content item detailscreate_content_library_item- Create reusable content blockdelete_content_library_item- Delete content item
Webhook Tools (4)
list_webhooks- List all configured webhookscreate_webhook- Create webhook for document eventsupdate_webhook- Update webhook URL, events, statusdelete_webhook- Delete webhook
Workspace Tools (2)
list_workspaces- List accessible workspacesget_workspace- Get workspace details and settings
Total: 29 tools
API Coverage
Core Entities
- ✅ Documents (list, get, create, update, send, delete, download)
- ✅ Templates (list, get, create, update, delete)
- ✅ Contacts (list, get, create, update, delete)
- ✅ Document Fields (get, update)
- ✅ Content Library (list, get, create, delete)
- ✅ Webhooks (list, create, update, delete)
- ✅ Workspaces (list, get)
Features
- ✅ Pagination on all list operations
- ✅ Document lifecycle (draft → sent → completed)
- ✅ Template-based document creation
- ✅ Field pre-filling and validation
- ✅ Multi-recipient workflows
- ✅ Real-time webhook events
- ✅ Content reusability
- ✅ Rate limiting (300 req/min)
- ✅ Error handling
Document Events (Webhooks)
- ✅ document_created
- ✅ document_sent
- ✅ document_viewed
- ✅ document_completed
- ✅ document_declined
- ✅ recipient_completed
Rate Limits
- Standard: 300 requests/minute
- Automatic rate limit handling with backoff
- Rate limit headers tracked and respected
Tool Naming Conventions
list_*- Paginated collections (documents, templates, contacts, content_library, webhooks, workspaces)get_*- Single resource retrieval (document, template, contact, content_library_item, workspace, document_fields)create_*- Resource creation (document, template, contact, content_library_item, webhook)update_*- Resource modification (document, template, contact, document_fields, webhook)delete_*- Resource deletion (document, template, contact, content_library_item, webhook)send_*- Action operations (send_document)download_*- Download operations (download_document)
Architecture
src/
├── index.ts # MCP server entry point
├── client/
│ └── pandadoc-client.ts # API client with auth & rate limiting
├── tools/
│ ├── document-tools.ts # Document operations (7 tools)
│ ├── template-tools.ts # Template management (5 tools)
│ ├── contact-tools.ts # Contact management (5 tools)
│ ├── field-tools.ts # Field operations (2 tools)
│ ├── content-library-tools.ts # Content library (4 tools)
│ ├── webhook-tools.ts # Webhook management (4 tools)
│ └── workspace-tools.ts # Workspace operations (2 tools)
└── types/
└── index.ts # TypeScript interfaces
License
MIT