{
  "info": {
    "name": "Kraken.io — mcp.ai",
    "description": "REST API for the Kraken.io 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/kraken_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "kraken_io_check_user_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/user/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "user",
            "status"
          ]
        },
        "description": "Tool to retrieve current Kraken.io account status and quota usage. Use when you need to verify plan limits and remaining quota before processing images.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"api_key\": \"\",\n  \"api_secret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kraken_io_optimize_image_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/optimize/image/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "optimize",
            "image",
            "url"
          ]
        },
        "description": "Tool to optimize an image from a public URL. Use when you need to compress, resize, or convert an externally hosted image. Returns result immediately if 'wait' is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dev\": false,\n  \"url\": \"\",\n  \"auth\": {},\n  \"avif\": false,\n  \"wait\": false,\n  \"webp\": false,\n  \"lossy\": false,\n  \"resize\": {},\n  \"convert\": {},\n  \"quality\": 0,\n  \"lossless\": false,\n  \"s3_store\": {},\n  \"preserve_metadata\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kraken_io_preserve_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/preserve/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "preserve",
            "metadata"
          ]
        },
        "description": "Tool to preserve EXIF and other metadata during Kraken.io image optimization. Use when you need to maintain metadata while compressing images.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dev\": false,\n  \"url\": \"\",\n  \"auth\": {},\n  \"file\": \"\",\n  \"wait\": false,\n  \"lossy\": false,\n  \"quality\": 0,\n  \"s3_store\": {},\n  \"file_name\": \"\",\n  \"preserve_metadata\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}