{
  "info": {
    "name": "DeepImage — mcp.ai",
    "description": "REST API for the DeepImage 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/deepimage",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "deepimage_delete_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "job"
          ]
        },
        "description": "Tool to delete completed job result and remove images from the server. Use when cleaning up processed jobs that are no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepimage_get_account_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "info"
          ]
        },
        "description": "Tool to retrieve authenticated user's profile information including credits, username, email, API key, language preference, webhook settings, and billing address. Use when you need to check account de",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepimage_get_job_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/job/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "job",
            "result"
          ]
        },
        "description": "Tool to retrieve processing job result by hash. Use to check job status and get result URL when processing is complete.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepimage_process_image_async",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/process/image/async",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "process",
            "image",
            "async"
          ]
        },
        "description": "Tool to schedule an image enhancement job and wait for the result. Performs selected enhancement options on an image and returns the result URL if processing completes within 25 seconds; otherwise ret",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dpi\": 0,\n  \"fit\": \"\",\n  \"url\": \"\",\n  \"width\": \"\",\n  \"height\": \"\",\n  \"preset\": \"\",\n  \"target\": \"\",\n  \"padding\": \"\",\n  \"quality\": 0,\n  \"background\": {},\n  \"min_length\": 0,\n  \"print_size\": \"\",\n  \"enhancements\": \"\",\n  \"output_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepimage_process_image_sync",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/process/image/sync",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "process",
            "image",
            "sync"
          ]
        },
        "description": "Tool to process an image synchronously with Deep Image AI. Returns result URL immediately if processing completes in less than 25 seconds, otherwise returns job hash for async polling. Use for image e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dpi\": 0,\n  \"url\": \"\",\n  \"width\": \"\",\n  \"height\": \"\",\n  \"preset\": \"\",\n  \"target\": \"\",\n  \"quality\": 0,\n  \"background\": {},\n  \"print_size\": \"\",\n  \"enhancements\": \"\",\n  \"max_file_size\": \"\",\n  \"output_format\": \"\",\n  \"color_parameters\": {},\n  \"light_parameters\": {},\n  \"deblur_parameters\": {},\n  \"denoise_parameters\": {},\n  \"white_balance_parameters\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}