Skip to content

session_attendance

See who is registered for a session, and who has checked in.

Authentication required

Endpoint

endpoint
https://business.sessions.website/@<handle>/api/mcp

When to use it

  • Front-desk questions: who is coming, and who has arrived.

  • Before cancelling a session, to see who it affects.

Parameters

sessionstringrequired

Session id.

limitnumberoptional

Max registrations (default 100).

Returns

Each registration on the session — the participant, their registration status, and whether they have checked in.

Example

POST this to the endpoint above.

JSON-RPC
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "session_attendance",
    "arguments": {
      "session": "<session id>",
      "limit": 50
    }
  }
}
content
Morning Yoga — 8 registration(s):
- Dana Whitfield · registered · checked in
- Sam Okafor · registered · not checked in

What the agent is told

The description the model reads when deciding whether to call this. It is the only thing that decides whether the tool fires at the right moment, so it is worth knowing what it says.

session_attendance
List the registrations on one session — each participant, their registration status, and whether they have checked in.

See also