{
  "info": {
    "name": "Documentero — mcp.ai",
    "description": "REST API for the Documentero 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/documentero",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "documentero_generate_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "document"
          ]
        },
        "description": "Generate a DOCX, PDF, or XLSX document from a Documentero template and data. Returns an expiring signed download URL by default or embedded base64 file data when requested. Each call consumes plan-dep",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"embed\": false,\n  \"format\": \"\",\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "documentero_get_template_json_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template/json/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template",
            "json",
            "schema"
          ]
        },
        "description": "Return the JSON Schema for the data object accepted when generating a document from a template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "documentero_get_template_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template",
            "metadata"
          ]
        },
        "description": "Return a template's Documentero field definitions, nested field options, supported output formats, and default output format.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "documentero_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "Return all templates available to the connected Documentero account, including each template identifier and type-bearing label.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}