{
  "info": {
    "name": "Dreamstudio — mcp.ai",
    "description": "REST API for the Dreamstudio 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/dreamstudio",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dreamstudio_generate_image_from_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/image/from/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "image",
            "from",
            "image"
          ]
        },
        "description": "Tool to generate a new image from an initial image and text prompts. Use after you have a reference image and want to transform it via text guidance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seed\": 0,\n  \"steps\": 0,\n  \"width\": 0,\n  \"height\": 0,\n  \"samples\": 0,\n  \"cfg_scale\": 0,\n  \"engine_id\": \"\",\n  \"init_image\": \"\",\n  \"text_prompts\": \"\",\n  \"image_strength\": 0,\n  \"init_image_mode\": \"\",\n  \"step_schedule_end\": 0,\n  \"step_schedule_start\": 0,\n  \"clip_guidance_preset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dreamstudio_generate_image_from_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/image/from/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "image",
            "from",
            "text"
          ]
        },
        "description": "Generate images from text prompts using Stability AI's text-to-image models. Use when you need to create images from textual descriptions without a reference image. Supports multiple prompts with weig",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seed\": 0,\n  \"steps\": 0,\n  \"width\": 0,\n  \"height\": 0,\n  \"sampler\": \"\",\n  \"samples\": 0,\n  \"cfg_scale\": 0,\n  \"engine_id\": \"\",\n  \"organization\": \"\",\n  \"text_prompts\": \"\",\n  \"clip_guidance_preset\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dreamstudio_list_engines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/engines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "engines"
          ]
        },
        "description": "List all available DreamStudio/Stability AI engines accessible with your API key. This action retrieves all AI models (engines) you can use for image generation and other tasks. Common engines include",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dreamstudio_user_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/user/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "user",
            "account"
          ]
        },
        "description": "Retrieves authenticated user's account information from Stability AI. Returns user ID, email, organization memberships, and profile picture. No parameters required - uses authenticated session.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dreamstudio_user_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/user/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "user",
            "balance"
          ]
        },
        "description": "Retrieves the user's current credit balance from their DreamStudio account. Use this tool to check how many credits are available before generating images or to monitor remaining credits after API ope",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}