@firfi/huly-mcp 0.25.0 → 0.27.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.
- package/README.md +42 -8
- package/dist/index.cjs +2573 -826
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -296,11 +296,11 @@ Planned feature surfaces:
|
|
|
296
296
|
- Team planner and schedule reporting: team agendas, workload/capacity summaries, and visibility-aware free/busy views across members/projects.
|
|
297
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
|
-
- Notifications and activity:
|
|
300
|
-
- Attachments and media:
|
|
299
|
+
- Notifications and activity: browser/push subscription internals, provider defaults, UI presenter/viewlet metadata, and activity control/extension metadata.
|
|
300
|
+
- Attachments and media: previews/preview metadata and friendly wrappers for additional object types beyond issue/document.
|
|
301
301
|
- Core schema and workspace administration: attribute/property create/update/delete/hide, enum CRUD/options, sequence management, role assignment mutations, role/permission definition writes, generic space creation, global space admins, integrations registry, invite settings, role capability settings, and workspace setting metadata.
|
|
302
302
|
- Integrations: GitHub repository/project mappings and sync metadata, Google Calendar connect/configure/sync controls, Bitrix entity/field mappings and sync status, Gmail/email channel messages, Telegram messages, Huly Mail/Mail plugin behavior, AI assistant integration state, and AI bot configuration if server-side APIs expose stable behavior.
|
|
303
|
-
- Templates, rating, support, billing, analytics, views, workbench, and preferences: message templates/categories/fields, document/person rating data, support conversations, billing tier/status discovery, onboarding channels, saved filtered views, user view preferences, tabs/widgets/apps, and module preference discovery/update.
|
|
303
|
+
- Templates, rating, support, billing, analytics, views, workbench, and preferences: message templates/categories/fields, document/person rating data blocked by unpublished `@hcengineering/rating` SDK package (#90), support conversations, billing tier/status discovery, onboarding channels, saved filtered views, user view preferences, tabs/widgets/apps, and module preference discovery/update.
|
|
304
304
|
- Document-specific gaps: document snapshots/history, backlinks, notes, structured action items/tables, PDF/export, advanced document relationships, and document printing/export once SDK support is safe.
|
|
305
305
|
|
|
306
306
|
MCP resource roadmap:
|
|
@@ -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`, `drive`, `labels`, `leads`, `planner`, `processes`, `sdk-discovery`, `spaces`, `tag-categories`, `tags`, `task-management`, `test-management`, `user-statuses`, `virtual-office`
|
|
325
|
+
**`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `associations`, `activity`, `notifications`, `workspace`, `cards`, `collaborators`, `custom-fields`, `drive`, `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
|
|
|
@@ -423,6 +423,14 @@ SDK upgrade revisit:
|
|
|
423
423
|
| `download_attachment` | Get download URL for an attachment along with file metadata (name, type, size). |
|
|
424
424
|
| `add_issue_attachment` | Add an attachment to a Huly issue. Convenience method that finds the issue by project and identifier. Provide ONE of: filePath, fileUrl, or data. |
|
|
425
425
|
| `add_document_attachment` | Add an attachment to a Huly document. Convenience method that finds the document by teamspace and title/ID. Provide ONE of: filePath, fileUrl, or data. |
|
|
426
|
+
| `save_attachment` | Save/bookmark an attachment for later reference. Idempotent when already saved. |
|
|
427
|
+
| `unsave_attachment` | Remove an attachment from saved/bookmarks. |
|
|
428
|
+
| `list_saved_attachments` | List saved/bookmarked attachments for the current user. |
|
|
429
|
+
| `list_drawings` | List drawings attached to a raw Huly parent object. |
|
|
430
|
+
| `get_drawing` | Get a drawing by ID. |
|
|
431
|
+
| `create_drawing` | Create a drawing under a raw Huly parent object. |
|
|
432
|
+
| `update_drawing` | Update drawing content. Pass null content to clear it. |
|
|
433
|
+
| `delete_drawing` | Delete a drawing. This action cannot be undone. |
|
|
426
434
|
|
|
427
435
|
### Contacts
|
|
428
436
|
|
|
@@ -523,6 +531,14 @@ SDK upgrade revisit:
|
|
|
523
531
|
| Tool | Description |
|
|
524
532
|
|------|-------------|
|
|
525
533
|
| `list_activity` | List activity messages for a Huly issue, document, channel, or raw Huly object. Prefer friendly targets: project+issueIdentifier for issues, teamspace+document for documents, or channel for channels. Advanced callers may pass objectId+objectClass directly. Returns activity sorted by date (newest first). |
|
|
534
|
+
| `get_activity_message` | Get a single activity message by ID, including subclass metadata when available. |
|
|
535
|
+
| `pin_activity_message` | Pin or unpin an activity message. Idempotent when the pin state already matches. |
|
|
536
|
+
| `list_activity_filters` | List configured activity filters in display order. |
|
|
537
|
+
| `list_activity_references` | List activity references connected to a raw Huly object. Use direction to list references from the object, to the object, or both. |
|
|
538
|
+
| `list_activity_replies` | List thread replies on any activity message, not only channel messages. |
|
|
539
|
+
| `add_activity_reply` | Add a Markdown reply to any activity message. |
|
|
540
|
+
| `update_activity_reply` | Update a generic activity reply body. |
|
|
541
|
+
| `delete_activity_reply` | Delete a generic activity reply. |
|
|
526
542
|
| `add_reaction` | Add an emoji reaction to an activity message. |
|
|
527
543
|
| `remove_reaction` | Remove an emoji reaction from an activity message. |
|
|
528
544
|
| `list_reactions` | List reactions on an activity message. |
|
|
@@ -535,18 +551,28 @@ SDK upgrade revisit:
|
|
|
535
551
|
|
|
536
552
|
| Tool | Description |
|
|
537
553
|
|------|-------------|
|
|
554
|
+
| `list_notification_providers` | List notification providers such as inbox, push, and sound. Use provider IDs from this tool when updating provider or type settings. |
|
|
555
|
+
| `list_notification_types` | List notification types. Use type IDs from this tool when updating provider-specific notification type settings. |
|
|
538
556
|
| `list_notifications` | List inbox notifications. Returns notifications sorted by modification date (newest first). Supports filtering by read/archived status. |
|
|
539
557
|
| `get_notification` | Retrieve full details for a notification. Use this to view notification content and metadata. |
|
|
540
|
-
| `mark_notification_read` | Mark a notification as read. |
|
|
558
|
+
| `mark_notification_read` | Mark a notification as read. Idempotent: returns success when the notification is already read. |
|
|
559
|
+
| `mark_notification_unread` | Mark a notification as unread. Idempotent: returns success when the notification is already unread. |
|
|
541
560
|
| `mark_all_notifications_read` | Mark all unread notifications as read. Returns the count of notifications marked. |
|
|
542
|
-
| `archive_notification` | Archive a notification. Archived notifications are hidden from the main inbox view. |
|
|
561
|
+
| `archive_notification` | Archive a notification. Archived notifications are hidden from the main inbox view. Idempotent when already archived. |
|
|
562
|
+
| `unarchive_notification` | Unarchive a notification so it can appear in active notification lists again. Idempotent when already active. |
|
|
543
563
|
| `archive_all_notifications` | Archive all notifications. Returns the count of notifications archived. |
|
|
544
564
|
| `delete_notification` | Permanently delete a notification. This action cannot be undone. |
|
|
545
565
|
| `get_notification_context` | Get notification context for an entity. Returns tracking information for a specific object. |
|
|
546
|
-
| `list_notification_contexts` | List notification contexts. Returns contexts sorted by last update timestamp (newest first). Supports filtering by pinned status. |
|
|
547
|
-
| `pin_notification_context` | Pin or unpin a notification context. Pinned contexts are highlighted in the inbox. |
|
|
566
|
+
| `list_notification_contexts` | List notification contexts. Returns contexts sorted by last update timestamp (newest first). Supports filtering by pinned status and can include hidden contexts. |
|
|
567
|
+
| `pin_notification_context` | Pin or unpin a notification context. Pinned contexts are highlighted in the inbox. Idempotent when the pin state already matches. |
|
|
568
|
+
| `hide_notification_context` | Hide or unhide a notification context. Hidden contexts are omitted from list_notification_contexts unless includeHidden is true. Idempotent when the hidden state already matches. |
|
|
569
|
+
| `archive_notification_context` | Archive all inbox notifications in a notification context. Idempotent: returns count 0 when no active notifications remain. |
|
|
570
|
+
| `unarchive_notification_context` | Unarchive all archived inbox notifications in a notification context. Idempotent: returns count 0 when no archived notifications remain. |
|
|
571
|
+
| `subscribe_to_object_notifications` | Subscribe the authenticated account to notifications for a raw Huly object by adding a core collaborator row. Idempotent when already subscribed. |
|
|
572
|
+
| `unsubscribe_from_object_notifications` | Unsubscribe the authenticated account from notifications for a raw Huly object by removing its collaborator row. Idempotent when already absent. |
|
|
548
573
|
| `list_notification_settings` | List notification provider settings. Returns current notification preferences. |
|
|
549
574
|
| `update_notification_provider_setting` | Update notification provider setting. Enable or disable notifications for a specific provider. |
|
|
575
|
+
| `update_notification_type_setting` | Enable or disable one notification type for one provider. Creates the type setting only when the provider has a configurable setting in this workspace. |
|
|
550
576
|
| `get_unread_notification_count` | Get the count of unread notifications. |
|
|
551
577
|
|
|
552
578
|
### Workspace
|
|
@@ -577,6 +603,14 @@ SDK upgrade revisit:
|
|
|
577
603
|
| `update_card` | Update fields on an existing Huly card. Only provided fields are modified. Content updates support markdown. |
|
|
578
604
|
| `delete_card` | Permanently delete a Huly card. This action cannot be undone. |
|
|
579
605
|
|
|
606
|
+
### Collaborators
|
|
607
|
+
|
|
608
|
+
| Tool | Description |
|
|
609
|
+
|------|-------------|
|
|
610
|
+
| `list_object_collaborators` | List notification collaborators on a Huly issue, document, or raw object. Prefer friendly targets: project+issueIdentifier for issues or teamspace+document for documents. Advanced callers may pass objectId+objectClass directly. |
|
|
611
|
+
| `add_object_collaborator` | Subscribe a workspace member to object notifications by adding a core collaborator row. Member can be an account UUID, exact employee/person name, or email. Idempotent when already subscribed. |
|
|
612
|
+
| `remove_object_collaborator` | Unsubscribe a workspace member from object notifications by removing its collaborator row. Member can be an account UUID, exact employee/person name, or email. Idempotent when already absent. |
|
|
613
|
+
|
|
580
614
|
### Custom-Fields
|
|
581
615
|
|
|
582
616
|
| Tool | Description |
|