{
  "openapi": "3.1.0",
  "info": {
    "title": "OfflineCreator Studio MCP",
    "version": "0.1.3",
    "description": "OfflineCreator Studio MCP server for Cursor, Claude, Hermes, and other MCP clients"
  },
  "servers": [
    {
      "url": "https://offlinecreatorstudio.com"
    }
  ],
  "x-service-info": {
    "categories": [
      "media",
      "generation",
      "compute"
    ],
    "name": "OfflineCreator Studio"
  },
  "paths": {
    "/api/v1/generations": {
      "post": {
        "operationId": "startGeneration",
        "summary": "Start a priced generation on Studio",
        "x-payment-info": {
          "intent": "charge",
          "method": "stripe",
          "amount": null,
          "currency": "usd",
          "description": "Dynamic per-model generation price. Runtime 402 is authoritative."
        },
        "responses": {
          "200": {
            "description": "Generation reserved or queued"
          },
          "402": {
            "description": "Payment required"
          }
        }
      }
    },
    "/mcp": {
      "post": {
        "operationId": "mcp",
        "summary": "Streamable HTTP MCP endpoint",
        "responses": {
          "401": {
            "description": "OAuth required"
          }
        }
      }
    }
  }
}