@firfi/huly-mcp 0.10.0 → 0.10.1
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 +4 -0
- package/dist/index.cjs +557 -276
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -285,6 +285,10 @@ 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
|
+
| `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
|
+
| `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
|
+
| `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. |
|
|
291
|
+
| `delete_dm_message` | Permanently delete 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. This action cannot be undone. |
|
|
288
292
|
| `list_thread_replies` | List replies in a message thread. Returns replies sorted by date (oldest first). |
|
|
289
293
|
| `add_thread_reply` | Add a reply to a message thread. Reply body supports markdown formatting. |
|
|
290
294
|
| `update_thread_reply` | Update a thread reply. Only the body can be modified. |
|