{
  "info": {
    "name": "eSignatures.io — mcp.ai",
    "description": "REST API for the eSignatures.io MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/esignatures_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "esignatures_io_add_template_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/template/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "template",
            "collaborator"
          ]
        },
        "description": "Tool to grant editing access to a template with optional email invitation. Use when you need to add a collaborator who can edit the template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_copy_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "template"
          ]
        },
        "description": "Tool to duplicate an existing template with optional customization. Use when you need to create a new template based on an existing one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"template_id\": \"\",\n  \"placeholder_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_create_contract",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contract",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contract"
          ]
        },
        "description": "Tool to create a new contract using a specified template and signer details. Use after selecting a template when you need to send a contract for signature.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test\": \"\",\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"locale\": \"\",\n  \"signers\": \"\",\n  \"metadata\": \"\",\n  \"template_id\": \"\",\n  \"save_as_draft\": \"\",\n  \"expires_in_hours\": 0,\n  \"custom_webhook_url\": \"\",\n  \"placeholder_fields\": \"\",\n  \"assigned_user_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_create_signer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/signer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "signer"
          ]
        },
        "description": "Add a signer to an existing contract/signature request. This action queues the addition of a new signer to a contract that has already been created. The signer will be added asynchronously and will re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company_name\": \"\",\n  \"phone_number\": \"\",\n  \"redirect_url\": \"\",\n  \"custom_fields\": {},\n  \"signature_request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_create_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "template"
          ]
        },
        "description": "Tool to create a new template. Use when you want to register a reusable contract template after defining document elements.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"document_elements\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_delete_signer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/signer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "signer"
          ]
        },
        "description": "Tool to remove a signer from a contract. Use when you need to revoke a signer's access to sign a contract.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"signer_id\": \"\",\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_delete_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "template"
          ]
        },
        "description": "Tool to delete a specific template by its ID. Use when you need to remove an unused or outdated template after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_generate_contract_pdf_preview",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/contract/pdf/preview",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "contract",
            "pdf",
            "preview"
          ]
        },
        "description": "Tool to generate a PDF preview of a contract and receive a webhook notification with a download URL. Use when you need to preview the contract document before or after signing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_get_contract",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contract",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contract"
          ]
        },
        "description": "Tool to retrieve details of a specific contract by its ID. Returns contract status, signer information, and values entered by signers. Use when you need to check contract status or download signed PDF",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_get_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template"
          ]
        },
        "description": "Tool to retrieve details of a specific template by its ID. Use when you need to fetch a template’s metadata after selecting its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_list_template_collaborators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/template/collaborators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "template",
            "collaborators"
          ]
        },
        "description": "Tool to retrieve all collaborators with editing access to a template. Returns collaborator IDs, names, emails, and editor URLs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "Tool to retrieve a list of all templates. Use when you need to browse available templates before selecting one.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_remove_template_collaborator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/template/collaborator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "template",
            "collaborator"
          ]
        },
        "description": "Tool to revoke a collaborator's template editing permissions. Use when you need to remove access for a specific collaborator from a template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\",\n  \"template_collaborator_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_send_contract_to_signer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/contract/to/signer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "contract",
            "to",
            "signer"
          ]
        },
        "description": "Tool to send or resend a contract signature request to a specific signer via their configured communication channel. Use when you need to deliver a contract to a signer for their signature.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"signer_id\": \"\",\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_update_signer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/signer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "signer"
          ]
        },
        "description": "Tool to update contact details of an existing signer on a contract. Use when you need to change a signer's name, email, or mobile number. Note: The contract is not automatically emailed when the signe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"mobile\": \"\",\n  \"signer_id\": \"\",\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_update_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "template"
          ]
        },
        "description": "Tool to update an existing template's content, title, or labels. Use when you need to modify a template's configuration without creating a new one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"template_id\": \"\",\n  \"document_elements\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "esignatures_io_withdraw_contract",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/withdraw/contract",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "withdraw",
            "contract"
          ]
        },
        "description": "Tool to withdraw a contract by its ID. Use when you need to prevent further signing of a contract that hasn't been fully signed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contract_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}