{
  "info": {
    "name": "Eledo PDF — mcp.ai",
    "description": "REST API for the Eledo PDF 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/eledo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "eledo_generate_pdf",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/pdf",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "pdf"
          ]
        },
        "description": "Generate a downloadable PDF from an Eledo template and input data. Each successful call consumes document quota. Validate data against Get Template Schema because Eledo may render missing or invalid f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\",\n  \"template_data\": {},\n  \"template_version\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eledo_get_current_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "account"
          ]
        },
        "description": "Return the account identifier associated with the connected Eledo API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eledo_get_template_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template",
            "schema"
          ]
        },
        "description": "Return the input-field schema for an Eledo template and optional version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_type\": \"\",\n  \"template_id\": \"\",\n  \"template_version\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "eledo_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "Return a bounded list of templates owned by the connected Eledo account. This intentionally does not enumerate the potentially unbounded public library.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}