mcp-server-guide

by PandaDocVerified

Where to start to use PandaDoc MCP server

2
Stars
0
Forks
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/PandaDoc/mcp-server-guide

Getting Started

Guides for using skills like mcp-server-guide.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

PandaDoc

PandaDoc MCP Server Guide

Configuration files and tools to integrate PandaDoc with LLMs and agent frameworks.

License: MIT Documentation


PandaDoc hosts a remote MCP server at https://mcp.pandadoc.com/v1/mcp. This allows secure MCP client access via OAuth. View the docs here.

[!NOTE] PandaDoc document creation, sending, and other operations volume and limits are also applied to the PandaDoc MCP server.

Existing rate limits for the PandaDoc Public API also apply to PandaDoc MCP server tools. More information on Public API limits can be found in: https://developers.pandadoc.com/reference/limits

Table of Contents

Installation & Setup

Different MCP clients require slightly different setups. Follow the instructions below for your specific client to connect to the PandaDoc MCP server.

Claude Desktop

To set up the PandaDoc MCP server in Claude Desktop:

  1. Open Claude Desktop and go to "Customize" → "Connectors".

  2. Click the "+" button, then select "... Add custom connector".

  3. On the "Add custom connector" screen, enter:

  4. Click Connect to begin the authentication process. An external page will open.

  5. Click Allow access to consent and begin the authentication process with PandaDoc.

  6. Click Authorize to authenticate and allow Claude to access your PandaDoc account.

  7. After authentication completes, you should be prompted with an alert. Press "Open Claude" to go back to Claude Desktop.

  8. Back in the Claude app, you should see PandaDoc listed as one of your custom connectors, and you're ready to start prompting in Claude.

Claude Code

To set up the PandaDoc MCP server in Claude Code:

  1. Open your terminal, run the following command, then press Enter: claude mcp add pandadoc --transport http https://mcp.pandadoc.com/v1/mcp
  2. Type claude to start Claude Code.
  3. Type /mcp and press Enter to open the list of MCP servers you have installed.
  4. Use the arrow keys to navigate to the PandaDoc server and press Enter to begin the authentication process. An external page will open.
  5. Click Allow access to consent and begin the authentication process with PandaDoc.
  6. Click Authorize to authenticate and allow Claude Code to access your PandaDoc account.
  7. Once authentication completes, head back to the terminal and run the /mcp command again.
  8. The PandaDoc server should now display as connected, and you're ready to start prompting in Claude Code.

Cline

To set up the PandaDoc MCP server with Cline:

  1. Install or update the Cline CLI:

    npm install -g cline
    
  2. Open your terminal and start the Cline MCP installation wizard:

    cline mcp add pandadoc --transport streamable-http https://mcp.pandadoc.com/v1/mcp
    
  3. Review the prefilled server details in the wizard and complete the setup.

  4. Continue to PandaDoc in your browser when prompted to authenticate.

  5. Click Allow access, then Authorize, to allow Cline to access your PandaDoc account.

  6. Return to Cline after authentication and verify that the PandaDoc server is connected.

You can reopen the MCP management interface at any time by running cline mcp.

No local PandaDoc package, source code, API key, or environment variable is required. Authentication is handled through PandaDoc OAuth.

OpenCode

To set up the PandaDoc MCP server in OpenCode:

  1. Open your terminal and run: opencode mcp add
  2. Press Enter to start the process.
  3. When OpenCode asks for the MCP server name, type pandadoc and press Enter.
  4. When OpenCode asks for the MCP server type, use the arrow keys to navigate to "Remote" and press Enter.
  5. When OpenCode asks for the MCP server URL, type https://mcp.pandadoc.com/v1/mcp and press Enter.
  6. When OpenCode asks if the server requires OAuth authentication, navigate to "Yes" and press Enter.
  7. When OpenCode asks "Do you have a pre-registered client ID?", navigate to "No" and press Enter.
  8. OpenCode should finish with the message: "MCP server added successfully".
  9. Authenticate with your PandaDoc account by running: opencode mcp auth pandadoc
  10. Press Enter to begin the authentication process. An external page will open.
  11. Click Allow access to consent and begin the authentication process with PandaDoc.
  12. Click Authorize to authenticate and allow OpenCode to access your PandaDoc account.
  13. Once authentication completes, head back to the terminal and start OpenCode with the command opencode.
  14. Inside OpenCode, type /mcp in the prompt and press Enter.
  15. You should see "pandadoc" listed as "connected".
  16. Press ESC and you're ready to start prompting in OpenCode.

Codex

To set up the PandaDoc MCP server in Codex desktop:

  1. Open Codex and click "Settings → Settings" in the lower-left corner.

  2. In the settings view, select "MCP servers".

  3. In the MCP servers listing, select "+ Add server".

  4. On the "Connect to a custom MCP" screen, enter:

  5. Click Save.

  6. Back in the MCP servers list, an "Authenticate" button should appear next to the settings gear icon. Click it to begin the authentication process. An external page will open.

  7. Click Allow access to consent and begin the authentication process with PandaDoc.

  8. Click Authorize to authenticate and allow Codex to access your PandaDoc account.

  9. Once authentication completes, head back to the Codex window, and you're ready to start prompting in Codex.

Kiro

To install the PandaDoc power from its public GitHub repository:

  1. Open the Powers panel and select Add Custom Power.
  2. Select Import power from GitHub.
  3. Enter https://github.com/PandaDoc/mcp-server-guide and click Install.
  4. Ask Kiro to perform a PandaDoc task and complete the PandaDoc OAuth flow when prompted.

Cursor

To set up the PandaDoc MCP server in Cursor:

  1. Open the command palette:

    • macOS: CMD + Shift + P
    • Windows/Linux: CTRL + Shift + P
  2. From the list, select "View: Open MCP Settings" and press Enter.

  3. Select "Tools & MCPs".

  4. Under "Installed MCP Servers", click the "New MCP Server" button.

  5. An mcp.json file should open. Add the PandaDoc MCP server inside the mcpServers object. It should look like this:

    {
      "mcpServers": {
        "pandadoc": {
          "url": "https://mcp.pandadoc.com/v1/mcp"
        }
      }
    }
    

    Note: if you already had an MCP server configured, make sure the commas are in the right place, for example:

    {
      "mcpServers": {
        "mcp-sample-server": {
          "url": "https://mcp.sample.server.com/mcp"
        },
        "pandadoc": {
          "url": "https://mcp.pandadoc.com/v1/mcp"
        }
      }
    }
    
  6. Save the file and go back to the previous "Tools & MCPs" screen.

  7. An "Authenticate" button should appear. Click it to begin the authentication process. An external page will open.

  8. Click Allow access to consent and begin the authentication process with PandaDoc.

  9. Click Authorize to authenticate and allow Cursor to access your PandaDoc account.

  10. Once authentication completes, head back to the Cursor app, and you're ready to start prompting.

VS Code

To set up the PandaDoc MCP server in VS Code:

  1. Make sure you have GitHub Copilot enabled.

  2. Open the command palette and select "MCP: Add server...":

    • macOS: CMD + Shift + P
    • Windows/Linux: CTRL + Shift + P
  3. Select HTTP.

  4. Paste the server URL https://mcp.pandadoc.com/v1/mcp in the search bar, then hit Enter.

  5. Type PandaDoc when it asks for a server ID, then hit Enter.

  6. Your mcp.json file should be displayed with the PandaDoc MCP server configuration.

  7. VS Code will prompt with an alert to allow authentication. Press the Allow button.

  8. Another alert with a URL will be displayed. Click the Open button to begin the authentication process. An external page will open.

  9. Click Allow access to consent and begin the authentication process with PandaDoc.

  10. Click Authorize to authenticate and allow VS Code to access your PandaDoc account.

  11. Once authentication completes, head back to the VS Code window, and you're ready to start prompting in VS Code.

Gemini (powered by Gemini CLI)

To set up the PandaDoc MCP server for use with Gemini:

  1. Open your terminal and go to the folder where you want to work.
  2. Run the following command: gemini extensions install https://github.com/PandaDoc/mcp-server-guide
  3. Press Enter to start the process.

Instructions vary depending on the client. For other clients, ask your client how to add an MCP server or check your client's documentation.

Support and Privacy

License

MIT

Frequently Asked Questions

What is mcp-server-guide?

mcp-server-guide is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by PandaDoc. Where to start to use PandaDoc MCP server. It has 2 GitHub stars.

Is mcp-server-guide safe to use?

Yes. mcp-server-guide passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install mcp-server-guide?

Clone the repository with "git clone https://github.com/PandaDoc/mcp-server-guide" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to mcp-server-guide?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh mcp-server-guide against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP Servers
View details

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP Servers
View details

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP Servers
View details

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP Servers
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details