{
  "info": {
    "name": "Streamtime — mcp.ai",
    "description": "REST API for the Streamtime 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/streamtime",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "streamtime_list_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "roles"
          ]
        },
        "description": "Retrieves all roles in the Streamtime organization. No parameters required. Returns role ID, name, and active status. Use this to discover available roles before assigning them to users or when you ne",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "streamtime_organisation_get_organisation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/organisation/get/organisation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "organisation",
            "get",
            "organisation"
          ]
        },
        "description": "Tool to retrieve your organisation’s details. Use after confirming your authentication to ensure you are operating within the correct organisation context.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "streamtime_roles_get_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/roles/get/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "roles",
            "get",
            "role"
          ]
        },
        "description": "Tool to retrieve a role by ID. Use when you need to fetch details of a specific role after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"role_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "streamtime_users_list_saved_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/list/saved/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "list",
            "saved",
            "segments"
          ]
        },
        "description": "Retrieves all saved segments for a specific user. Saved segments are custom filters or views that a user has created and saved in Streamtime. Use this when you need to see what segment filters a user ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}