@firfi/huly-mcp 0.23.0 → 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +24 -2
  2. package/dist/index.cjs +3038 -999
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -294,7 +294,7 @@ Planned feature surfaces:
294
294
  - Contacts: person channels, social identities, provider discovery, contact statuses, notes/comments, person attachments, person merge, employee invite/create/kick/reinvite, and inactive employee management.
295
295
  - Calendar: calendar CRUD/config, external calendar sync metadata, primary calendar management, schedule objects, participant mutations, and RSVP/status support when stable.
296
296
  - Team planner and schedule reporting: team agendas, workload/capacity summaries, and visibility-aware free/busy views across members/projects.
297
- - Virtual office and meetings: offices, floors, rooms, access/language/default recording/transcription settings, meeting schedules, active participants, room info, meeting minutes, transcripts, recordings, and device preferences.
297
+ - Virtual office and meetings: offices, floors, rooms, access/language/default recording/transcription settings, meeting schedules, active participants, room info, meeting notes/transcript records (minutes), recordings, and device preferences.
298
298
  - Chat and communication: direct-message send/update/delete, group DMs, channel member mutations, join/leave/request access, archive/unarchive, star/favorite channels, close/reopen conversations, pinned messages, message attachments, translation, applets, in-message polls, and guest communication settings.
299
299
  - Notifications and activity: mark unread, unarchive, hide/unhide/mute contexts, unsubscribe per context/type, notification type settings, collaborators, pin/unpin activity messages, generic activity replies, filters, references, mentions, and update-message introspection.
300
300
  - Attachments and media: saved attachments, photos, drawings, embeddings, previews/preview metadata, and friendly wrappers for additional object types.
@@ -322,7 +322,7 @@ SDK upgrade revisit:
322
322
  <!-- AUTO-GENERATED from src/mcp/tools/ descriptions. Do not edit manually. Run `pnpm update-readme` to regenerate. -->
323
323
  ## Available Tools
324
324
 
325
- **`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `associations`, `activity`, `notifications`, `workspace`, `cards`, `custom-fields`, `labels`, `leads`, `planner`, `processes`, `sdk-discovery`, `spaces`, `tag-categories`, `tags`, `task-management`, `test-management`, `user-statuses`
325
+ **`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `associations`, `activity`, `notifications`, `workspace`, `cards`, `custom-fields`, `labels`, `leads`, `planner`, `processes`, `sdk-discovery`, `spaces`, `tag-categories`, `tags`, `task-management`, `test-management`, `user-statuses`, `virtual-office`
326
326
 
327
327
  ### Projects
328
328
 
@@ -480,6 +480,11 @@ SDK upgrade revisit:
480
480
  | `create_event` | Create a new calendar event. Description supports markdown formatting. Optional calendarId targets a specific calendar; when omitted, the event uses the authenticated user's primary personal calendar. Returns the created event ID. |
481
481
  | `update_event` | Update fields on an existing calendar event. Only provided fields are modified. Description updates support markdown. |
482
482
  | `delete_event` | Permanently delete a calendar event. This action cannot be undone. |
483
+ | `list_schedules` | List calendar scheduling links/availability schedules. Optional owner accepts an employee/person ID, exact name, or email. |
484
+ | `get_schedule` | Retrieve one calendar schedule including owner, availability, calendar target, time zone, and room information when it is a meeting schedule. |
485
+ | `create_schedule` | Create a calendar schedule. Owner accepts an employee/person ID, exact name, or email; calendar can be targeted by calendarId or calendarName. |
486
+ | `update_schedule` | Update a calendar schedule. Supports owner, title, description, duration, interval, availability, timeZone, and calendar move by calendarId or calendarName. |
487
+ | `delete_schedule` | Delete a calendar schedule by scheduleId. |
483
488
  | `list_recurring_events` | List recurring event definitions. Returns recurring events sorted by modification date (newest first). |
484
489
  | `create_recurring_event` | Create a new recurring calendar event with RFC5545 RRULE rules. Description supports markdown. Optional calendarId targets a specific calendar; when omitted, the event uses the authenticated user's primary personal calendar. Returns the created event ID. |
485
490
  | `list_event_instances` | List instances of a recurring event. Returns instances sorted by date. Supports filtering by date range. Use includeParticipants=true to fetch full participant info (extra lookups). |
@@ -715,6 +720,23 @@ SDK upgrade revisit:
715
720
  |------|-------------|
716
721
  | `list_user_statuses` | List Huly user presence records. Returns account UUIDs, online status, and last modified timestamp. Use this to check who is currently connected; presence is maintained by Huly server sessions. Filter by online or account UUID. |
717
722
 
723
+ ### Virtual-Office
724
+
725
+ | Tool | Description |
726
+ |------|-------------|
727
+ | `list_office_floors` | List virtual office floors. |
728
+ | `get_office_floor` | Get one virtual office floor by floorId. |
729
+ | `list_office_rooms` | List virtual office rooms, including access mode, type, floor, floor-plan position/size, language, and recording/transcription defaults. |
730
+ | `get_office_room` | Get one virtual office room by roomId, including description when readable. |
731
+ | `list_offices` | List personal office rooms and their assigned people when readable. |
732
+ | `get_office` | Get one personal office room by roomId, including assigned person and description when readable. |
733
+ | `list_active_room_info` | List transient active room occupancy summaries. |
734
+ | `list_active_room_participants` | List transient active virtual-office participants and positions, optionally filtered by roomId. |
735
+ | `list_meeting_minutes` | List meeting notes/transcript records (minutes) by optional attachment target and created-on range. |
736
+ | `get_meeting_minutes` | Get one meeting notes/transcript record (minutes) by meetingMinutesId, including description when readable. |
737
+ | `list_device_preferences` | List readable virtual-office media device preferences. |
738
+ | `list_office_defaults` | List room-level language, default recording, and default transcription settings. |
739
+
718
740
  <!-- tools:end -->
719
741
 
720
742
  ## Troubleshooting