{
  "info": {
    "name": "Renderform — mcp.ai",
    "description": "REST API for the Renderform 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/renderform",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "renderform_create_pdf_from_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pdf/from/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pdf",
            "from",
            "url"
          ]
        },
        "description": "Tool to create a PDF from any website URL with customizable page format and auto-expiration. Use when you need to generate a PDF snapshot of a webpage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"format\": \"\",\n  \"expires\": 0,\n  \"waitTime\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_delete_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "result"
          ]
        },
        "description": "Tool to delete a render result (image/PDF) by its identifier. Use when you need to remove a previously generated image or PDF from the system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_get_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "result"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific render result by its identifier. Use when you need to check the status or get the full details of a previously generated image or PDF.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_list_fonts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/fonts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "fonts"
          ]
        },
        "description": "Tool to retrieve all available fonts including Google Fonts and custom uploaded fonts. Use when you need to list fonts for text rendering.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_list_results_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/results/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "results",
            "v2"
          ]
        },
        "description": "Tool to list all rendered images and PDFs with pagination support. Use when retrieving results from the v2 API with filtering by template or batch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"size\": 0,\n  \"batch\": \"\",\n  \"template\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_list_templates_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates",
            "v2"
          ]
        },
        "description": "Tool to get a list of all your templates with metadata and preview links. Supports pagination and filtering by name and tags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"size\": 0,\n  \"tags\": \"\",\n  \"sourceTemplateId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "renderform_take_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "screenshot"
          ]
        },
        "description": "Tool to capture a screenshot of a website with given dimensions. Use when you need a visual snapshot of a page with optional wait time before capture.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"width\": 0,\n  \"height\": 0,\n  \"waitTime\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}