Loading...
Loading...
Automate DocuSign tasks via Rube MCP (Composio): templates, envelopes, signatures, document management. Always search tools first for current schemas.
npx skill4agent add composiohq/awesome-claude-skills docusign-automationRUBE_MANAGE_CONNECTIONSdocusignRUBE_SEARCH_TOOLShttps://rube.app/mcpRUBE_SEARCH_TOOLSRUBE_MANAGE_CONNECTIONSdocusignDOCUSIGN_LIST_ALL_TEMPLATESDOCUSIGN_GET_TEMPLATEtemplateIdtemplateIdnamedescriptionDOCUSIGN_LIST_ALL_TEMPLATESDOCUSIGN_GET_TEMPLATEDOCUSIGN_CREATE_ENVELOPE_FROM_TEMPLATEDOCUSIGN_SEND_ENVELOPEtemplateIdtemplateRolesroleNamenameemailstatusemailSubjectemailBlurbenvelopeIdtemplateRolesstatusroleNamenameemailemailSubjectDOCUSIGN_GET_ENVELOPEenvelopeIdstatusrecipientssentDateTimecompletedDateTimeDOCUSIGN_GET_ENVELOPEDOCUSIGN_ADD_TEMPLATES_TO_DOCUMENT_IN_ENVELOPEenvelopeIddocumentIdtemplateIdDOCUSIGN_GET_ENVELOPEDOCUSIGN_SEND_ENVELOPEenvelopeId1. Call DOCUSIGN_LIST_ALL_TEMPLATES
2. Find template by name in results
3. Extract templateId (GUID format)1. Store envelopeId from CREATE_ENVELOPE_FROM_TEMPLATE response
2. Call DOCUSIGN_GET_ENVELOPE periodically to check status
3. Check recipient-level status for individual signing progress1. Call DOCUSIGN_GET_TEMPLATE to see defined roles
2. Map each role to actual recipients:
{
"roleName": "Signer 1", // Must match template role name exactly
"name": "John Smith",
"email": "john@example.com"
}
3. Include ALL required roles in templateRoles arraycreated (draft) -> sent -> delivered -> signed -> completed
\-> declined
\-> voided (by sender)data| Task | Tool Slug | Key Params |
|---|---|---|
| List templates | DOCUSIGN_LIST_ALL_TEMPLATES | (optional filters) |
| Get template | DOCUSIGN_GET_TEMPLATE | templateId |
| Create envelope | DOCUSIGN_CREATE_ENVELOPE_FROM_TEMPLATE | templateId, templateRoles, status |
| Send envelope | DOCUSIGN_SEND_ENVELOPE | envelopeId |
| Get envelope status | DOCUSIGN_GET_ENVELOPE | envelopeId |
| Add template to envelope | DOCUSIGN_ADD_TEMPLATES_TO_DOCUMENT_IN_ENVELOPE | envelopeId, documentId, templateId |