Nurama Developers

list_scope_convos

List live conversations attached to a scope (a project today) at the given visibility tier(s).

Read-only tool.

List live conversations attached to a scope (a project today) at the given visibility tier(s). Filter by status / participant search. Use to answer "what huddles are running in this project right now?" or to find a recent completed convo before sharing its recording.

Input

PropertyTypeRequiredDescription
scopeIdstringyesUUID of the scope resource — typically a projectId.
visibility"creator" | "reviewer"[]yesVisibility tier(s) to include. Must be non-empty. min items 1
status"active" | "completed" | "cancelled"noFilter by lifecycle status.
searchstringnoFilter by participant name.
limitnumbernoPage size (1-50, default 20). min 1. max 50
cursorstringnoOpaque cursor from a prior page.
includeCountsbooleannoWhen true, include total counts in the response.

JSON Schema

{
  "type": "object",
  "properties": {
    "scopeId": {
      "type": "string",
      "description": "UUID of the scope resource — typically a projectId."
    },
    "visibility": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "creator",
          "reviewer"
        ]
      },
      "minItems": 1,
      "description": "Visibility tier(s) to include. Must be non-empty."
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "completed",
        "cancelled"
      ],
      "description": "Filter by lifecycle status."
    },
    "search": {
      "type": "string",
      "description": "Filter by participant name."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    },
    "cursor": {
      "type": "string",
      "description": "Opaque cursor from a prior page."
    },
    "includeCounts": {
      "type": "boolean",
      "description": "When true, include total counts in the response."
    }
  },
  "required": [
    "scopeId",
    "visibility"
  ],
  "additionalProperties": false
}

On this page