mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
d295aa6056
Docusign Integration Keys are environment-specific, so demo/developer
accounts must point at https://mcp-d.docusign.com/mcp. Reintroduce the
DOCUSIGN_MCP_URL variable (Salesforce's SALESFORCE_MCP_URL pattern) so
the endpoint is set at configure time instead of hardcoding the
production URL in mcp.json, and restore the matching README and
changelog wording.
This reverts commit f290d8295d.
Docusign
Cursor plugin that connects agents to Docusign through Docusign's official remote Model Context Protocol server (beta).
Work with eSignature envelopes and templates, Maestro workflows, and Navigator agreement data from the signed-in Docusign account.
Install
- Open Cursor Settings → Plugins.
- Search for Docusign.
- Click Install, then set the MCP URL, Integration Key, and Secret Key (below) and complete the Docusign sign-in prompt.
Or run /add-plugin docusign in chat.
MCP
{
"mcpServers": {
"docusign": {
"type": "http",
"url": "${DOCUSIGN_MCP_URL}",
"auth": {
"CLIENT_ID": "${CLIENT_ID}",
"CLIENT_SECRET": "${CLIENT_SECRET}"
}
}
}
}
Setup
Docusign MCP requires a confidential OAuth app (Authorization Code Grant). Create an Integration Key before anyone can connect.
- Sign in to your Docusign developer account (or production admin account) and open Settings → Apps and Keys.
- Add an app, copy the Integration Key, and generate a Secret Key.
- Register both redirect URIs on that app:
- Desktop:
http://localhost:8787/callback - Web and Cloud Agents:
https://www.cursor.com/agents/mcp/oauth/callback
- Desktop:
- In Dashboard → Plugins → Configure, set:
- Docusign MCP server URL — demo or production (table below)
- Docusign Integration Key and Docusign Secret Key from that app
- Complete the Docusign OAuth login when Cursor prompts.
| Environment | URL |
|---|---|
| Demo (developer accounts) | https://mcp-d.docusign.com/mcp |
| Production | https://mcp.docusign.com/mcp |
On a team marketplace an admin can set the URL and credentials once for everyone; each member still completes their own Docusign OAuth login, so tool calls run with that member's permissions.
Notes
- The MCP server is in beta. Expect changes as Docusign adds tools and refines the surface.
- Only Confidential Authorization Code Grant tokens are supported — not JWT, Implicit, or Public Authorization Code Grant.
- Match the MCP URL to the account type: use the demo URL with developer/demo accounts and the production URL with production accounts.
Docs
- Docusign MCP server (beta): https://developers.docusign.com/platform/mcp-server/
- Confidential Authorization Code Grant: https://developers.docusign.com/platform/auth/confidential-authcode-get-token
Logo is Docusign's developer-center app icon (192×192) from https://developers.docusign.com/.
License
MIT