{
  "info": {
    "name": "Docnify — mcp.ai",
    "description": "REST API for the Docnify 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/docnify",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "docnify_add_document_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/document/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "document",
            "recipient"
          ]
        },
        "description": "Tool to add a recipient to a document. Use after confirming the document's ID. Optionally specify signing order and authentication options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"email\": \"\",\n  \"documentId\": 0,\n  \"authOptions\": {},\n  \"signingOrder\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_create_document_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/document/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "document",
            "fields"
          ]
        },
        "description": "Tool to create one or more fields on a document. Use after fetching a document to add fields before sending.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"documentId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_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 specific document by its ID. Use when you have confirmed the document should be permanently removed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_delete_document_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document",
            "fields"
          ]
        },
        "description": "Tool to delete a field from a document. Use when you need to remove a specific field from an existing document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"fieldId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_delete_document_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document",
            "recipient"
          ]
        },
        "description": "Tool to remove a recipient from a document. Use after verifying document and recipient IDs to revoke access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": 0,\n  \"recipient_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_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 fetch a specific document by its ID. Use when you need to view a document's current state and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_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 fetch a specific template by its ID. Use to view a template's details and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "Tool to list documents in the Docnify account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"perPage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_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 in the Docnify account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"perPage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_resend_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/resend/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "resend",
            "document"
          ]
        },
        "description": "Tool to resend a document for signing. Use after verifying the document ID to re-trigger signing notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_send_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "document"
          ]
        },
        "description": "Tool to send a document for signing. Use after confirming the document's ID, adding recipients, and uploading content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_update_document_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document",
            "fields"
          ]
        },
        "description": "Tool to update metadata of document fields. Use when you need to change labels or requirements of existing fields before sending.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"documentId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docnify_update_document_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document",
            "recipient"
          ]
        },
        "description": "Tool to update a recipient's details (name, email, role) on a document. Use after confirming document and recipient IDs. Provide at least one field to update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"role\": \"\",\n  \"email\": \"\",\n  \"documentId\": 0,\n  \"recipientId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}