{
  "name": "list_meetings",
  "title": "List Meetly meetings",
  "description": "Use this to browse authorized meeting history or select meetings for a daily briefing. Lists discovery metadata newest first; previews and action counts may be generated and are not evidence, and participants do not prove attendance or speaking. Use fetch for transcript evidence or get_transcript for bounded pages.",
  "annotations": {
    "readOnlyHint": true,
    "destructiveHint": false,
    "openWorldHint": false,
    "idempotentHint": true
  },
  "securitySchemes": [
    {
      "type": "oauth2",
      "scopes": [
        "meetings:read"
      ]
    }
  ],
  "_meta": {
    "securitySchemes": [
      {
        "type": "oauth2",
        "scopes": [
          "meetings:read"
        ]
      }
    ],
    "openai/toolInvocation/invoking": "Finding meetings…",
    "openai/toolInvocation/invoked": "Meetings ready"
  },
  "inputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "from": {
        "type": "number",
        "description": "Milliseconds since Unix epoch; inclusive meeting-date lower bound."
      },
      "to": {
        "type": "number",
        "description": "Milliseconds since Unix epoch; exclusive meeting-date upper bound."
      },
      "query": {
        "type": "string",
        "description": "Optional case-insensitive filter over meeting title and preview."
      },
      "limit": {
        "type": "number",
        "minimum": 1,
        "maximum": 100,
        "description": "Maximum results; defaults to 25."
      },
      "cursor": {
        "type": "number",
        "minimum": 0,
        "description": "Zero-based result offset; defaults to 0."
      }
    }
  },
  "outputSchema": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "meetings": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "id": {
              "type": "string"
            },
            "title": {
              "type": "string"
            },
            "dateIso": {
              "type": "string",
              "format": "date-time"
            },
            "durationSec": {
              "type": "number"
            },
            "previewPlain": {
              "type": "string"
            },
            "participants": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "actionItemCount": {
              "type": "number"
            }
          },
          "required": [
            "id",
            "title",
            "dateIso",
            "durationSec",
            "previewPlain",
            "participants",
            "actionItemCount"
          ]
        }
      },
      "total": {
        "type": "number"
      },
      "nextCursor": {
        "type": [
          "number",
          "null"
        ]
      },
      "note": {
        "type": "string"
      }
    },
    "required": [
      "meetings",
      "total",
      "nextCursor"
    ]
  }
}
