{
  "info": {
    "name": "Dromo — mcp.ai",
    "description": "REST API for the Dromo 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/dromo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dromo_create_headless_import",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/headless/import",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "headless",
            "import"
          ]
        },
        "description": "Tool to create a headless import in Dromo. Returns a signed upload URL for file uploads. Use this before uploading files to obtain the temporary upload URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\",\n  \"initial_data\": \"\",\n  \"original_filename\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_create_import_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/import/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "import",
            "schema"
          ]
        },
        "description": "Tool to create a new import schema in Dromo. Define fields, validation rules, and settings for data imports. Use this when setting up a new data import workflow or template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"hooks\": {},\n  \"fields\": \"\",\n  \"settings\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_delete_import_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/import/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "import",
            "schema"
          ]
        },
        "description": "Tool to delete an import schema in Dromo. Use when you need to remove a schema definition that is no longer needed. This action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_get_import_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/import/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "import",
            "schema"
          ]
        },
        "description": "Tool to retrieve an import schema by ID from Dromo. Returns the complete schema definition including fields, validation rules, settings, and webhook configurations. Use this to inspect schema structur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_list_import_schemas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/import/schemas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "import",
            "schemas"
          ]
        },
        "description": "Tool to retrieve all import schemas configured for your Dromo organization. Use this to discover available schemas, their field definitions, validation rules, and settings before creating imports.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_list_uploads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/uploads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "uploads"
          ]
        },
        "description": "Retrieves a paginated list of all file uploads stored by Dromo for your organization. Returns upload metadata including status, row counts, errors, user information, and file details. Use this to moni",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": 0,\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_update_import_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/import/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "import",
            "schema"
          ]
        },
        "description": "Tool to update an existing import schema in Dromo. Modifies the schema definition including fields, validation rules, and settings. Use when you need to change field configurations, add/remove validat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"hooks\": {},\n  \"fields\": \"\",\n  \"settings\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dromo_upload_file_to_headless_import",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file/to/headless/import",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file",
            "to",
            "headless",
            "import"
          ]
        },
        "description": "Upload a file to Dromo's headless import system using a presigned S3 URL. This action performs the actual file upload step in Dromo's headless import workflow: 1. First, create a headless import via P",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"upload_url\": \"\",\n  \"content_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}