{
  "info": {
    "name": "Project Bubble — mcp.ai",
    "description": "REST API for the Project Bubble 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/project_bubble",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "project_bubble_data_api_get_data_type_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/data/api/get/data/type/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "data",
            "api",
            "get",
            "data",
            "type",
            "fields"
          ]
        },
        "description": "Retrieves the field schema for a specific Bubble data type, returning metadata about each field including its name, data type, and whether it's required. Use this after discovering available data type",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "project_bubble_data_api_get_objects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/data/api/get/objects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "data",
            "api",
            "get",
            "objects"
          ]
        },
        "description": "Tool to retrieve a list of objects for a specified data type. Use when you need to list items with optional filters, sorting, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"count\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"data_type\": \"\",\n  \"descending\": \"\",\n  \"sort_field\": \"\",\n  \"constraints\": \"\",\n  \"ignore_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "project_bubble_data_api_get_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/data/api/get/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "data",
            "api",
            "get",
            "record"
          ]
        },
        "description": "Retrieves a single record by its unique ID from a specified data type (table/collection). Use this when you need to fetch detailed information about a specific record and you already know its ID. The ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}