{
  "info": {
    "name": "Formcarry — mcp.ai",
    "description": "REST API for the Formcarry 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/formcarry",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "formcarry_create_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "form"
          ]
        },
        "description": "Create a new form with customizable settings including email notifications, webhooks, and thank you pages. This action creates a Formcarry form with extensive configuration options for email notificat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"failUrl\": \"\",\n  \"webhook\": \"\",\n  \"retention\": false,\n  \"returnUrl\": \"\",\n  \"autoResponse\": false,\n  \"returnParams\": false,\n  \"selfEmail_code\": \"\",\n  \"selfEmail_from\": \"\",\n  \"googleRecaptcha\": \"\",\n  \"selfEmail_theme\": \"\",\n  \"autoResponse_code\": \"\",\n  \"autoResponse_from\": \"\",\n  \"selfEmail_subject\": \"\",\n  \"thankYouPage_mode\": \"\",\n  \"autoResponse_theme\": \"\",\n  \"thankYouPage_theme\": \"\",\n  \"autoResponse_message\": \"\",\n  \"autoResponse_subject\": \"\",\n  \"selfEmail_sendOnSpam\": false,\n  \"thankYouPage_message\": \"\",\n  \"thankYouPage_headline\": \"\",\n  \"thankYouPage_returnUrl\": \"\",\n  \"thankYouPage_returnText\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formcarry_delete_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "form"
          ]
        },
        "description": "Delete an existing form by its Form ID. Use when you need to permanently remove a form from your Formcarry account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"formId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formcarry_retrieve_submissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/submissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "submissions"
          ]
        },
        "description": "Retrieves all submissions for a specific Formcarry form. Returns a paginated list of form submissions with their field data, timestamps, and submission IDs. Use pagination parameters to navigate throu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"formId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formcarry_verify_auth",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/auth",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "auth"
          ]
        },
        "description": "Tool to verify API key authentication with Formcarry. Use this endpoint to check if your API key is valid before making other API requests. Returns success status and a confirmation message if the API",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}