@firfi/huly-mcp 0.28.0 → 0.29.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 +11 -1
  2. package/dist/index.cjs +1531 -991
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -465,11 +465,21 @@ SDK upgrade revisit:
465
465
 
466
466
  | Tool | Description |
467
467
  |------|-------------|
468
+ | `list_channel_members` | List members of a Huly channel by channel name or ID. Returns each member account UUID and the workspace display name when available. |
469
+ | `add_channel_members` | Idempotently add members to a non-archived Huly channel. Members accept account UUID, exact email, or exact person display name and resolve to Huly account UUIDs before replacing the full sorted member array. |
470
+ | `remove_channel_members` | Idempotently remove members from a non-archived Huly channel. Members accept account UUID, exact email, or exact person display name. Refuses removals that would leave the channel with zero members or, when owners exist, no owner among remaining members. |
471
+ | `join_channel` | Join a non-archived Huly channel as the authenticated account. Idempotent when the account is already a member. |
472
+ | `leave_channel` | Leave a non-archived Huly channel as the authenticated account. Idempotent when already absent. Refuses to leave if that would leave the channel empty or without any remaining owner. |
473
+ | `archive_channel` | Archive a Huly channel by channel name or ID. This is reversible with unarchive_channel and is idempotent when the channel is already archived. |
474
+ | `unarchive_channel` | Unarchive a Huly channel by channel name or ID. Idempotent when the channel is already active. |
475
+ | `create_group_direct_message` | Open a group direct-message conversation with at least two other workspace members. The `people` array accepts exact emails or exact display names; the authenticated account is included automatically. Idempotent by exact sorted member set: returns an existing group DM with `created: false` when one already exists. For one other person, use create_direct_message. |
476
+ | `set_conversation_starred` | Set the authenticated user's starred state for exactly one conversation. Provide either `channel` (channel name or ID) or `dm` (DM ID, or one-to-one participant display name), plus `starred`. Creates the missing notification context when needed. |
477
+ | `set_conversation_closed` | Set the authenticated user's closed/visible state for exactly one conversation. Provide either `channel` or `dm`, plus `closed`. Closing only hides the current user's notification context; it does not leave channels or remove members. |
468
478
  | `list_channels` | List all Huly channels. Returns channels sorted by name. Supports filtering by archived status. Supports searching by name substring (nameSearch) and topic substring (topicSearch). |
469
479
  | `get_channel` | Retrieve full details for a Huly channel including topic and member list. |
470
480
  | `create_channel` | Create a new channel in Huly. Returns the created channel ID and name. |
471
481
  | `update_channel` | Update fields on an existing Huly channel. Only provided fields are modified. |
472
- | `delete_channel` | Permanently delete a Huly channel. This action cannot be undone. |
482
+ | `delete_channel` | Permanently delete a Huly channel. This action cannot be undone. For reversible channel lifecycle changes, use archive_channel and unarchive_channel instead. |
473
483
  | `list_channel_messages` | List messages in a Huly channel. Returns messages sorted by date (newest first). |
474
484
  | `send_channel_message` | Send a message to a Huly channel. Message body supports markdown formatting. |
475
485
  | `update_channel_message` | Update a channel message. Only the body can be modified. |