documents
PandaDoc MCP, CLI, and Lua Integration for AI Agents
PandaDoc integration docs for AI agents: MCP gateway setup, PandaDoc CLI commands, Lua API reference, credentials, and function schemas.
9 functions 6 read 3 write Manual OAuth token auth
PandaDoc for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
pandadoc- route_slug
pandadoc- package
pandadoc- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. PandaDoc CLIHeadless setup and direct function calls. PandaDoc MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
PandaDoc MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for PandaDoc.
Claude Code PandaDoc MCP setup for Claude Code. Cursor PandaDoc MCP setup for Cursor. Codex PandaDoc MCP setup for Codex. OpenAI Agents PandaDoc MCP setup for OpenAI Agents SDK. Claude Agent SDK PandaDoc MCP setup for Claude Agent SDK. Vercel AI SDK PandaDoc MCP setup for Vercel AI SDK. LangChain PandaDoc MCP setup for LangChain. LangGraph PandaDoc MCP setup for LangGraph. CrewAI PandaDoc MCP setup for CrewAI. MCP clients PandaDoc MCP setup for Generic MCP Clients.
PandaDoc CLI Matrix
Use these pages for direct PandaDoc CLI workflows in scripts, CI, cron, and agent wrappers.
CI PandaDoc CLI for CI. Cron Jobs PandaDoc CLI for cron jobs. Shell Scripts PandaDoc CLI for shell scripts. Headless Automation PandaDoc CLI for headless automation. Coding Agents PandaDoc CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
pandadoc.pandadoc_list_documents | Read read | 2 | List documents from PandaDoc. Returns a paginated list of documents with their IDs, names, status, and metadata. |
pandadoc.pandadoc_get_document | Read read | 1 | Get details of a specific PandaDoc document by ID. Returns document metadata, status, recipients, and fields. |
pandadoc.pandadoc_create_document | Write write | 6 | Create a new PandaDoc document from an existing template. The document is created in draft status and can then be sent for signature. |
pandadoc.pandadoc_send_document | Write write | 3 | Send a PandaDoc document to recipients for signature. The document must be in draft status. Once sent, recipients will receive an email notification. |
pandadoc.pandadoc_list_templates | Read read | 1 | List available document templates from PandaDoc. Returns template IDs, names, and metadata for creating new documents. |
pandadoc.pandadoc_get_template | Read read | 1 | Get details of a specific PandaDoc template by ID. Returns template metadata, fields, tokens, and recipient roles. |
pandadoc.pandadoc_download_document | Read read | 1 | Download a PandaDoc document as a PDF. Returns the PDF content as a base64-encoded string. |
pandadoc.pandadoc_create_link | Write write | 2 | Create a signed sharing link (session) for a PandaDoc document. The link allows viewing the document without authentication. |
pandadoc.pandadoc_get_current_user | Read read | 0 | Get the profile of the currently authenticated PandaDoc user. Useful for verifying the connection and identifying the account. |