{
  "info": {
    "name": "CloudConvert — mcp.ai",
    "description": "REST API for the CloudConvert 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/cloudconvert",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cloudconvert_create_export_google_cloud_storage_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/export/google/cloud/storage/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "export",
            "google",
            "cloud",
            "storage",
            "task"
          ]
        },
        "description": "Tool to create a task to export files to a Google Cloud Storage bucket. Use after conversion when you need to store results directly into GCS. Ensure service account credentials have the proper permis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": \"\",\n  \"input\": \"\",\n  \"bucket\": \"\",\n  \"project_id\": \"\",\n  \"file_prefix\": \"\",\n  \"private_key\": \"\",\n  \"client_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_create_export_s3_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/export/s3/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "export",
            "s3",
            "task"
          ]
        },
        "description": "Tool to create a task to export files to an Amazon S3 bucket. Use after conversion when you need to store results directly into S3. Ensure AWS credentials have s3:PutObject (and PutObjectAcl if using ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"acl\": \"\",\n  \"key\": \"\",\n  \"input\": \"\",\n  \"bucket\": \"\",\n  \"region\": \"\",\n  \"tagging\": {},\n  \"endpoint\": \"\",\n  \"metadata\": {},\n  \"key_prefix\": \"\",\n  \"content_type\": \"\",\n  \"access_key_id\": \"\",\n  \"cache_control\": \"\",\n  \"session_token\": \"\",\n  \"secret_access_key\": \"\",\n  \"content_disposition\": \"\",\n  \"server_side_encryption\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Creates a new webhook to receive CloudConvert event notifications. Use this when you need to be notified about job status changes (created, finished, or failed) via HTTP POST requests to your server.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"event\": \"\",\n  \"payload\": {},\n  \"signing_secret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Permanently delete a webhook by its ID. Use this when you no longer need to receive event notifications for a specific webhook. The webhook ID can be obtained from the create_webhook or list_webhooks ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_list_operations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/operations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "operations"
          ]
        },
        "description": "Tool to list all possible CloudConvert operations with their available options and engine details. Use when you need to discover what operations are available, check operation requirements, or filter ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include\": \"\",\n  \"filter_input_format\": \"\",\n  \"filter_output_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_list_supported_formats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/supported/formats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "supported",
            "formats"
          ]
        },
        "description": "Tool to list all supported conversion formats, engines, and options. Use when you need to discover available conversions before creating tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include\": \"\",\n  \"alternatives\": false,\n  \"filter_engine\": \"\",\n  \"filter_input_format\": \"\",\n  \"filter_output_format\": \"\",\n  \"filter_engine_version\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_list_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tasks"
          ]
        },
        "description": "List all CloudConvert tasks with their status, payload and results. Use this tool to: - Monitor conversion task progress and status - Find tasks by status (waiting, processing, finished, error) - Filt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"job_id\": \"\",\n  \"status\": \"\",\n  \"include\": \"\",\n  \"order_by\": \"\",\n  \"per_page\": 0,\n  \"operation\": \"\",\n  \"created_at\": \"\",\n  \"completed_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to list all webhooks. Use when you need to retrieve existing webhooks before managing or inspecting them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"filter_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cloudconvert_show_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/show/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "show",
            "user"
          ]
        },
        "description": "Retrieves the current authenticated user's CloudConvert account information. Returns the user's ID, username, email, remaining conversion credits, and account creation date. Requires the 'user.read' s",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}