Skip to main content
Glama

send_envelope

Send digital signature envelopes for signing through the DigiSign API. Submit prepared documents with signers and signature tags to initiate the signing process.

Instructions

Send a draft envelope for signature. Requires at least one document, one signer, and signature tags placed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envelopeIdYesEnvelope UUID

Implementation Reference

  • MCP tool registration and handler for 'send_envelope' in src/index.js.
    server.tool(
      'send_envelope',
      'Send a draft envelope for signature. Requires at least one document, one signer, and signature tags placed.',
      {
        envelopeId: z.string().describe('Envelope UUID'),
      },
      async ({ envelopeId }) => {
        try {
          const data = await api.sendEnvelope(creds, envelopeId);
          return result(data);
        } catch (err) {
          return errorResult(err);
        }
      }
  • The underlying API call implementation for sending an envelope in src/api.js.
    export function sendEnvelope(creds, envelopeId) {
      return apiCall('POST', `/api/envelopes/${envelopeId}/send`, creds);
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/davidsimoes/digisign-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server