{
  "info": {
    "name": "Databox — mcp.ai",
    "description": "REST API for the Databox 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/databox",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "databox_create_data_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/data/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "data",
            "source"
          ]
        },
        "description": "Tool to create a new data source in Databox. Use when you need to create a logical container for datasets within a Databox account. Requires accountId, title, and timezone parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"timezone\": \"\",\n  \"accountId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_create_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "dataset"
          ]
        },
        "description": "Tool to create a new dataset in Databox data source. Use when you need to initialize a dataset with a title, data source ID, and primary keys for unique record identification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"primaryKeys\": \"\",\n  \"dataSourceId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_delete_data_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/data/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "data",
            "source"
          ]
        },
        "description": "Tool to delete a data source by ID in Databox. Use when you need to permanently remove a data source. This operation is irreversible and will delete all associated datasets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataSourceId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_delete_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dataset"
          ]
        },
        "description": "Tool to delete a dataset by ID in Databox. Use when you need to permanently remove a dataset. This operation is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_get_dataset_ingestion_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dataset/ingestion/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dataset",
            "ingestion",
            "status"
          ]
        },
        "description": "Tool to check the status of a specific data ingestion for a dataset. Use when you need to verify whether a data ingestion was successful by providing the dataset ID and ingestion ID returned from the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"datasetId\": \"\",\n  \"ingestionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Tool to retrieve all Databox accounts accessible to the authenticated user. Use to identify account IDs required for subsequent API operations like data source creation.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "databox_push_data_v1",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/push/data/v1",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "push",
            "data",
            "v1"
          ]
        },
        "description": "Tool to push data points to a Databox dataset using the v1 API. Use when you need to ingest data records into a specific dataset by providing the dataset ID and an array of records matching the datase",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"records\": \"\",\n  \"datasetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}