{
  "info": {
    "name": "Cincopa — mcp.ai",
    "description": "REST API for the Cincopa 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/cincopa",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cincopa_asset_upload_from_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/asset/upload/from/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "asset",
            "upload",
            "from",
            "url"
          ]
        },
        "description": "Tool to upload a new asset directly from a provided external URL and receive a status ID for tracking. Use when you need to import media from a remote source and optionally specify a gallery or existi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fid\": \"\",\n  \"rid\": \"\",\n  \"type\": \"\",\n  \"input\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cincopa_asset_upload_from_url_abort",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/asset/upload/from/url/abort",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "asset",
            "upload",
            "from",
            "url",
            "abort"
          ]
        },
        "description": "Tool to abort an ongoing asset upload-in-progress by providing its status ID. Use when an upload is no longer needed, was initiated by mistake, or is taking too long.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cincopa_asset_upload_from_url_get_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/asset/upload/from/url/get/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "asset",
            "upload",
            "from",
            "url",
            "get",
            "status"
          ]
        },
        "description": "Tool to check the status of an asset upload initiated via URL by its status ID. Use after calling 'Upload Asset From URL' to poll for completion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cincopa_get_upload_iframe",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/upload/iframe",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "upload",
            "iframe"
          ]
        },
        "description": "Tool to get an upload iframe URL for embedding an upload widget. Use when you need to generate an HTML iframe for uploading media to a Cincopa gallery.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fid\": \"\",\n  \"rrid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cincopa_ping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ping"
          ]
        },
        "description": "Tool to validate API connection. Use after obtaining a valid api_token to confirm connectivity.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}