{
  "info": {
    "name": "OpenUI Cloud — mcp.ai",
    "description": "REST API for the OpenUI Cloud 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/openui",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "openui_create_conversation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/conversation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "conversation"
          ]
        },
        "description": "Create a managed OpenUI conversation that can receive persisted turns from Generate UI.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_delete_conversation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/conversation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "conversation"
          ]
        },
        "description": "Permanently delete one managed OpenUI conversation by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_generate_ui",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/ui",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "ui"
          ]
        },
        "description": "Generate an OpenUI response from text or structured Responses API input. Supports standalone generation, stored-response chaining, managed conversations, Cloud-native tools, and caller-owned function ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": \"\",\n  \"model\": \"\",\n  \"store\": false,\n  \"tools\": \"\",\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"instructions\": \"\",\n  \"conversation_id\": \"\",\n  \"reasoning_effort\": \"\",\n  \"max_output_tokens\": 0,\n  \"parallel_tool_calls\": false,\n  \"previous_response_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_get_artifact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/artifact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "artifact"
          ]
        },
        "description": "Retrieve one persisted OpenUI artifact, including its complete renderable content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"artifact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_list_artifacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/artifacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "artifacts"
          ]
        },
        "description": "List persisted OpenUI artifacts, optionally filtering by name or artifact kinds, one cursor-controlled page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"kinds\": \"\",\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_list_conversation_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/conversation/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "conversation",
            "items"
          ]
        },
        "description": "Read one cursor-controlled page of persisted messages and function-call items from a managed OpenUI conversation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"next_cursor\": \"\",\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_list_conversations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/conversations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "conversations"
          ]
        },
        "description": "List managed OpenUI conversations visible to the connected organization, one cursor-controlled page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openui_rename_conversation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rename/conversation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rename",
            "conversation"
          ]
        },
        "description": "Change the title of an existing managed OpenUI conversation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}