{
  "info": {
    "name": "Eversign — mcp.ai",
    "description": "REST API for the Eversign 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/eversign",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "eversign_audit_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/audit/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "audit",
            "log"
          ]
        },
        "description": "Retrieves the complete audit trail for a document, showing all events from creation through completion. Use this after obtaining a document_hash from list_documents or create_document to track documen",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_hash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_create_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document"
          ]
        },
        "description": "Creates a new Eversign document for electronic signature collection from one or more signers. You can create documents either: 1. From a template (use EVERSIGN_LIST_TEMPLATES to find available templat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meta\": {},\n  \"files\": \"\",\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"message\": \"\",\n  \"sandbox\": false,\n  \"signers\": \"\",\n  \"is_draft\": false,\n  \"redirect\": \"\",\n  \"reminders\": false,\n  \"recipients\": \"\",\n  \"template_id\": \"\",\n  \"use_signer_order\": false,\n  \"require_all_signers\": false,\n  \"embedded_signing_enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_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 need to programmatically set up reusable document templates after confirming your business settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": \"\",\n  \"fields\": \"\",\n  \"expires\": 0,\n  \"sandbox\": false,\n  \"signers\": \"\",\n  \"reminders\": {},\n  \"template_note\": \"\",\n  \"template_title\": \"\",\n  \"template_message\": \"\",\n  \"require_all_signers\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_delete_document_or_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document/or/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document",
            "or",
            "template"
          ]
        },
        "description": "Tool to delete, cancel, or trash a document or template by its hash. Usage: - To cancel a pending/in-process document: Set cancel=True - To trash a document (safer, reversible): Set trash=True - To pe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"trash\": false,\n  \"cancel\": false,\n  \"document_hash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_get_bulk_job_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/job/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "job",
            "status"
          ]
        },
        "description": "Tool to retrieve the status of a bulk job. Use when you need to check the progress of a bulk sending job, including counts of completed, cancelled, and in-progress documents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bulk_job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_get_bulk_jobs_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/jobs/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "jobs",
            "list"
          ]
        },
        "description": "Tool to retrieve a list of bulk jobs for a business. Use when you need to view or paginate existing bulk jobs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_list_businesses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/businesses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "businesses"
          ]
        },
        "description": "Retrieves all businesses associated with your Eversign account, or filters to a specific business if business_id is provided. This is a read-only operation that returns business details including ID, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"business_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "Retrieves a paginated list of documents from your Eversign business account. This tool returns comprehensive document details including signers, status, timestamps, and metadata. Use filters to narrow",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"type\": \"\",\n  \"query\": \"\",\n  \"to_date\": \"\",\n  \"per_page\": 0,\n  \"from_date\": \"\",\n  \"signer_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_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 list templates for a business with optional pagination. Use when you need to retrieve a paginated list of templates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"type\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eversign_reassign_signer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reassign/signer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reassign",
            "signer"
          ]
        },
        "description": "Tool to reassign a signer to a new person. Use when you need to replace an existing signer on a document before signing is complete. Example: \"Reassign the signer alice@example.com on document abc123 ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"reason\": \"\",\n  \"signer_id\": 0,\n  \"document_hash\": \"\",\n  \"new_signer_name\": \"\",\n  \"new_signer_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}