{
  "info": {
    "name": "Byteforms — mcp.ai",
    "description": "REST API for the Byteforms 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/byteforms",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "byteforms_create_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "form"
          ]
        },
        "description": "Creates a new form in ByteForms. Use this to build data collection forms with customizable fields (text, email, phone), styling options (theme, width), and submission rules (limits, deadlines, passwor",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"name\": \"\",\n  \"options\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "byteforms_delete_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "form"
          ]
        },
        "description": "Tool to delete a form by its ID. Use when you need to remove an existing form permanently.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"form_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "byteforms_get_all_forms2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/forms2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "forms2"
          ]
        },
        "description": "Tool to fetch all forms created by the authenticated user. Use after authentication to list existing forms.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "byteforms_get_form_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/form/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "form",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information about a specific form by its numeric ID. Returns the form's name, fields, configuration options, and metadata. Use the numeric 'id' field (not the 'public_id' string) fr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"form_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "byteforms_get_form_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/form/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "form",
            "responses"
          ]
        },
        "description": "Tool to retrieve responses for a specific form with optional pagination and filtering. Use when the form has collected submissions and you need to navigate large result sets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"query\": \"\",\n  \"before\": \"\",\n  \"formId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}