Labsco
kumarprobeops logo

SignForge

from kumarprobeops

Send documents for e-signature from AI agents. 15 tools for envelope management, document downloads, templates, webhooks, and embedded signing.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

@signforge/mcp-server

Send documents for e-signature directly from Claude Desktop, Claude Code, Cursor, and other AI agents โ€” powered by SignForge, the free e-signature platform.

What It Does

This MCP server connects AI agents to SignForge's e-signature API. Your AI assistant can:

  • Send documents for signature โ€” upload a PDF, specify a signer, and send in one step
  • Manage envelopes โ€” send, void, delete, and check status
  • Download documents โ€” signed PDFs, audit certificates, and ZIP archives
  • Use templates โ€” create envelopes from reusable templates with pre-filled fields
  • Manage webhooks โ€” subscribe to real-time envelope events
  • Generate embed URLs โ€” create embeddable signing experiences

Tools

Envelope Management

ToolDescription
create_and_sendUpload a PDF, add a signer, and send for e-signature. Accepts a local file path or base64-encoded PDF.
check_statusCheck the status of an envelope โ€” see signing progress, timestamps, and available documents.
list_envelopesList your envelopes with optional status filtering (draft, sent, completed, voided, expired).
send_envelopeSend a draft envelope for signing.
void_envelopeVoid (cancel) an active envelope with an optional reason.
delete_envelopePermanently delete a draft or voided envelope.

Document Downloads

ToolDescription
download_signedDownload the signed PDF for a completed envelope to a local file.
download_certificateDownload the audit certificate PDF with full audit trail.
download_archiveDownload a ZIP archive with signed PDF, certificate, and all documents.

Embedded Signing

ToolDescription
get_embed_urlGenerate an embeddable signing URL for in-app signing experiences.

Templates

ToolDescription
list_templatesList your reusable document templates.
create_from_templateCreate an envelope from a template with optional pre-filled field values. Send immediately or save as draft.

Webhooks

ToolDescription
create_webhookSubscribe to envelope events (sent, viewed, signed, completed, expired, voided, declined).
list_webhooksList all configured webhooks.
delete_webhookDelete a webhook by ID.

Example Conversations

Send a document for signature

You: Send my NDA at ~/Documents/nda.pdf to jane@example.com (Jane Smith) for signature.

AI: I'll send that NDA for signature now.

[Uses create_and_send tool]

Done! I've created and sent the envelope:
- Envelope ID: a1b2c3d4-...
- Status: sent
- Jane Smith (jane@example.com) will receive a signing link via email.

Check status and download

You: Has Jane signed the NDA yet?

AI: Let me check.

[Uses check_status tool]

Yes! Jane signed it on April 7 at 2:15 PM. The envelope is now completed.

You: Great, download the signed copy and the audit certificate.

[Uses download_signed tool]
[Uses download_certificate tool]

Done! Files saved:
- Signed PDF: ~/Documents/nda-signed.pdf
- Audit Certificate: ~/Documents/nda-certificate.pdf

Use a template with pre-filled fields

You: Send our standard consulting agreement to bob@acme.com.
     Pre-fill the company name as "Acme Corp" and the start date as "May 1, 2026".

AI: I'll create that from your consulting agreement template.

[Uses list_templates tool โ€” finds "Consulting Agreement" template]
[Uses create_from_template tool โ€” with prefill_fields and send_immediately: true]

Done! Envelope created and sent:
- Title: Consulting Agreement
- Recipient: bob@acme.com
- Pre-filled: company = "Acme Corp", start_date = "May 1, 2026"
- Status: sent

Manage envelope lifecycle

You: List my sent envelopes.

[Uses list_envelopes tool with status: "sent"]

You: Void the contract for Project Alpha โ€” the deal fell through.

[Uses void_envelope tool with reason]

You: Now delete it.

[Uses delete_envelope tool]

Done โ€” envelope voided and deleted.

Set up a webhook

You: Set up a webhook to notify my server when documents are signed or completed.

[Uses create_webhook tool]

Webhook created:
- URL: https://api.yourapp.com/webhooks/signforge
- Events: envelope.signed, envelope.completed
- Secret: whsec_abc123... (save this for signature verification!)

Environment Variables

VariableRequiredDefaultDescription
SIGNFORGE_API_KEYYesโ€”Your SignForge API key. Get one at signforge.io/dashboard/developers.
SIGNFORGE_API_URLNohttps://signforge.io/api/v1API base URL. Only change this for self-hosted instances or staging.

Sandbox Mode

API keys created in sandbox mode will create test envelopes that don't send real emails. Use sandbox mode during development and testing.

Links

License

MIT