{
  "info": {
    "name": "Signwell — mcp.ai",
    "description": "REST API for the Signwell 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/signwell",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "signwell_create_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document"
          ]
        },
        "description": "Tool to create and optionally send a new document for signing. Use when you have files and recipients defined and want to programmatically submit a signature request in one call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"draft\": false,\n  \"files\": \"\",\n  \"message\": \"\",\n  \"subject\": \"\",\n  \"language\": \"\",\n  \"metadata\": {},\n  \"reminders\": false,\n  \"test_mode\": false,\n  \"text_tags\": false,\n  \"expires_in\": 0,\n  \"recipients\": \"\",\n  \"redirect_url\": \"\",\n  \"allow_decline\": false,\n  \"allow_reassign\": false,\n  \"embedded_signing\": false,\n  \"api_application_id\": \"\",\n  \"apply_signing_order\": false,\n  \"with_signature_page\": false,\n  \"decline_redirect_url\": \"\",\n  \"custom_requester_name\": \"\",\n  \"custom_requester_email\": \"\",\n  \"embedded_signing_notifications\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_create_document_from_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document/from/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document",
            "from",
            "template"
          ]
        },
        "description": "Tool to create and optionally send a new document for signing from a template. Use when you need to generate a document using a pre-configured template with placeholders. If draft is set to true the d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"draft\": false,\n  \"files\": \"\",\n  \"fields\": \"\",\n  \"labels\": \"\",\n  \"message\": \"\",\n  \"subject\": \"\",\n  \"metadata\": {},\n  \"reminders\": false,\n  \"test_mode\": false,\n  \"text_tags\": false,\n  \"expires_in\": 0,\n  \"recipients\": \"\",\n  \"template_id\": \"\",\n  \"redirect_url\": \"\",\n  \"template_ids\": \"\",\n  \"allow_decline\": false,\n  \"allow_reassign\": false,\n  \"copied_contacts\": \"\",\n  \"template_fields\": \"\",\n  \"embedded_signing\": false,\n  \"api_application_id\": \"\",\n  \"apply_signing_order\": false,\n  \"attachment_requests\": \"\",\n  \"with_signature_page\": false,\n  \"decline_redirect_url\": \"\",\n  \"custom_requester_name\": \"\",\n  \"custom_requester_email\": \"\",\n  \"embedded_signing_notifications\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to register a webhook callback URL. Use when you need to receive document event notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"callbackUrl\": \"\",\n  \"apiApplicationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_delete_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document"
          ]
        },
        "description": "Tool to delete a document (and cancel signing if in progress). Use when you need to remove a document by ID after confirming it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Deletes a registered webhook by its ID. Use this to remove webhooks that are no longer needed. Returns no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_get_credentials",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credentials",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credentials"
          ]
        },
        "description": "Retrieve account information for the authenticated API key. Returns comprehensive details including user profile, account settings, workspace configuration, and contact information. Use this to valida",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Tool to return a document and all associated document data. Use when you need to fetch document details by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_list_bulk_sends",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bulk/sends",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bulk",
            "sends"
          ]
        },
        "description": "Tool to list all Bulk Sends. Use after setting up API credentials to retrieve paginated records.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"email\": \"\",\n  \"per_page\": 0,\n  \"api_application_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to list all registered webhooks. Use when you need to retrieve the active webhooks for your SignWell account after setup.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_send_reminder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/reminder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "reminder"
          ]
        },
        "description": "Tool to send a reminder email to recipients that have not signed yet. Use when you need to prompt unsigned recipients to complete their signature.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"recipients\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_update_and_send_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/and/send/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "and",
            "send",
            "document"
          ]
        },
        "description": "Tool to update a draft document and send it to recipients for signing. Use when you need to modify document settings and initiate the signing process.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"labels\": \"\",\n  \"message\": \"\",\n  \"subject\": \"\",\n  \"metadata\": {},\n  \"reminders\": false,\n  \"test_mode\": false,\n  \"expires_in\": 0,\n  \"redirect_url\": \"\",\n  \"allow_decline\": false,\n  \"allow_reassign\": false,\n  \"embedded_signing\": false,\n  \"api_application_id\": \"\",\n  \"apply_signing_order\": false,\n  \"decline_redirect_url\": \"\",\n  \"custom_requester_name\": \"\",\n  \"custom_requester_email\": \"\",\n  \"embedded_signing_notifications\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "signwell_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 in SignWell. Use when you need to modify template properties such as name, subject, message, reminders, expiration, or other settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"draft\": false,\n  \"labels\": \"\",\n  \"message\": \"\",\n  \"subject\": \"\",\n  \"metadata\": {},\n  \"reminders\": false,\n  \"expires_in\": 0,\n  \"redirect_url\": \"\",\n  \"allow_decline\": false,\n  \"allow_reassign\": false,\n  \"api_application_id\": \"\",\n  \"apply_signing_order\": false,\n  \"decline_redirect_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}