{
  "info": {
    "name": "Wufoo — mcp.ai",
    "description": "REST API for the Wufoo 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/wufoo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wufoo_count_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/count/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "count",
            "entries"
          ]
        },
        "description": "Count entries for either a Wufoo form or report without downloading them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"match\": \"\",\n  \"filters\": \"\",\n  \"identifier\": \"\",\n  \"source_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_get_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "fields"
          ]
        },
        "description": "Return field definitions and API field IDs for a Wufoo form or for the form underlying a report.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\",\n  \"source_type\": \"\",\n  \"include_system_fields\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_get_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "form"
          ]
        },
        "description": "Get metadata for one Wufoo form by its permanent hash or title identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\",\n  \"include_today_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_list_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "entries"
          ]
        },
        "description": "List entries from a Wufoo form or report. Form entries may also be filtered and sorted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"match\": \"\",\n  \"filters\": \"\",\n  \"page_size\": 0,\n  \"identifier\": \"\",\n  \"next_cursor\": \"\",\n  \"source_type\": \"\",\n  \"sort_field_id\": \"\",\n  \"sort_direction\": \"\",\n  \"include_system_fields\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_list_form_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/form/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "form",
            "comments"
          ]
        },
        "description": "List Entry Manager comments for a form or for one entry, one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"entry_id\": 0,\n  \"page_size\": 0,\n  \"identifier\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_list_forms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/forms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "forms"
          ]
        },
        "description": "List forms accessible to the connected Wufoo user and return a cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\",\n  \"include_today_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wufoo_list_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reports"
          ]
        },
        "description": "List reports accessible to the connected Wufoo user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}