@firfi/huly-mcp 0.10.3 → 0.12.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 CHANGED
@@ -285,6 +285,7 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
285
285
  | `update_channel_message` | Update a channel message. Only the body can be modified. |
286
286
  | `delete_channel_message` | Permanently delete a channel message. This action cannot be undone. |
287
287
  | `list_direct_messages` | List direct message conversations in Huly. Returns conversations sorted by date (newest first). |
288
+ | `create_direct_message` | Open a one-to-one direct-message conversation with a workspace member. The `person` argument accepts an email or exact display name (e.g. `Smith,Bill`). Idempotent: if a DM with that participant already exists, returns it (`created: false`); otherwise creates a new DM (`created: true`). The returned `id` can be passed as `dm` to send_dm_message, list_dm_messages, etc. |
288
289
  | `list_dm_messages` | List messages in a direct-message conversation, newest first. The `dm` argument accepts either the DM `_id` or a participant display name (e.g. `Kerr,Shannon`); a name resolves only to a one-to-one DM with the authenticated account. |
289
290
  | `send_dm_message` | Send a message to a direct-message conversation. The `dm` argument accepts either the DM `_id` or a participant display name; a name resolves only to a one-to-one DM with the authenticated account. Message body supports markdown formatting. |
290
291
  | `update_dm_message` | Update a direct-message message. The `dm` argument accepts either the DM `_id` or a participant display name; a name resolves only to a one-to-one DM with the authenticated account. Only the body can be modified. |
@@ -371,6 +372,7 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
371
372
  | `get_user_profile` | Get the current user's profile information including bio, location, and social links. |
372
373
  | `update_user_profile` | Update the current user's profile. Supports bio, city, country, website, social links, and public visibility. |
373
374
  | `update_guest_settings` | Update workspace guest settings. Control read-only guest access and guest sign-up permissions. |
375
+ | `create_access_link` | Create a Huly workspace access link. Defaults to role GUEST. Supports anonymous reusable guest links by setting personalized=false with notBefore and expiration, and can restrict access to specific Huly space IDs via spaces. |
374
376
  | `get_regions` | Get available regions for workspace creation. Returns region codes and display names. |
375
377
 
376
378
  ### Cards