@@ -70,8 +70,12 @@ Retrieve details of a Luma event including name, time, location, hosts, and visi
7070| ↳ ` geoLongitude ` | string | Venue longitude coordinate |
7171| ↳ ` calendarId ` | string | Associated calendar ID |
7272| ` hosts ` | array | Event hosts |
73- | ↳ ` name ` | string | Host name |
73+ | ↳ ` id ` | string | Host ID |
74+ | ↳ ` name ` | string | Host display name |
75+ | ↳ ` firstName ` | string | Host first name |
76+ | ↳ ` lastName ` | string | Host last name |
7477| ↳ ` email ` | string | Host email address |
78+ | ↳ ` avatarUrl ` | string | Host avatar image URL |
7579
7680### ` luma_create_event `
7781
@@ -115,8 +119,12 @@ Create a new event on Luma with a name, start time, timezone, and optional detai
115119| ↳ ` geoLongitude ` | string | Venue longitude coordinate |
116120| ↳ ` calendarId ` | string | Associated calendar ID |
117121| ` hosts ` | array | Event hosts |
118- | ↳ ` name ` | string | Host name |
122+ | ↳ ` id ` | string | Host ID |
123+ | ↳ ` name ` | string | Host display name |
124+ | ↳ ` firstName ` | string | Host first name |
125+ | ↳ ` lastName ` | string | Host last name |
119126| ↳ ` email ` | string | Host email address |
127+ | ↳ ` avatarUrl ` | string | Host avatar image URL |
120128
121129### ` luma_update_event `
122130
@@ -161,8 +169,12 @@ Update an existing Luma event. Only the fields you provide will be changed; all
161169| ↳ ` geoLongitude ` | string | Venue longitude coordinate |
162170| ↳ ` calendarId ` | string | Associated calendar ID |
163171| ` hosts ` | array | Event hosts |
164- | ↳ ` name ` | string | Host name |
172+ | ↳ ` id ` | string | Host ID |
173+ | ↳ ` name ` | string | Host display name |
174+ | ↳ ` firstName ` | string | Host first name |
175+ | ↳ ` lastName ` | string | Host last name |
165176| ↳ ` email ` | string | Host email address |
177+ | ↳ ` avatarUrl ` | string | Host avatar image URL |
166178
167179### ` luma_list_events `
168180
@@ -177,7 +189,7 @@ List events from your Luma calendar with optional date range filtering, sorting,
177189| ` before ` | string | No | Return events before this ISO 8601 datetime \( e.g., 2025-12-31T23:59:59Z\) |
178190| ` paginationLimit ` | number | No | Maximum number of events to return per page |
179191| ` paginationCursor ` | string | No | Pagination cursor from a previous response \( next_cursor\) to fetch the next page of results |
180- | ` sortColumn ` | string | No | Column to sort by \( e.g., start_at\) |
192+ | ` sortColumn ` | string | No | Column to sort by \( only start_at is supported \) |
181193| ` sortDirection ` | string | No | Sort direction: asc, desc, asc nulls last, or desc nulls last |
182194
183195#### Output
0 commit comments