@firfi/huly-mcp 0.9.3 → 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 +7 -3
- package/dist/index.cjs +680 -297
- 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. |
|
|
@@ -295,12 +299,13 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
295
299
|
| Tool | Description |
|
|
296
300
|
|------|-------------|
|
|
297
301
|
| `list_events` | List calendar events. Returns events sorted by date. Supports filtering by date range. |
|
|
302
|
+
| `list_calendars` | List writable, non-hidden calendars that can be used as create_event or create_recurring_event targets. Use this before creating events when you need to choose a target calendarId explicitly. |
|
|
298
303
|
| `get_event` | Retrieve full details for a calendar event including description. Use this to view event content and metadata. |
|
|
299
|
-
| `create_event` | Create a new calendar event. Description supports markdown formatting. Returns the created event ID. |
|
|
304
|
+
| `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. |
|
|
300
305
|
| `update_event` | Update fields on an existing calendar event. Only provided fields are modified. Description updates support markdown. |
|
|
301
306
|
| `delete_event` | Permanently delete a calendar event. This action cannot be undone. |
|
|
302
307
|
| `list_recurring_events` | List recurring event definitions. Returns recurring events sorted by modification date (newest first). |
|
|
303
|
-
| `create_recurring_event` | Create a new recurring calendar event with RFC5545 RRULE rules. Description supports markdown. Returns the created event ID. |
|
|
308
|
+
| `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. |
|
|
304
309
|
| `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). |
|
|
305
310
|
|
|
306
311
|
### Time Tracking
|
|
@@ -523,4 +528,3 @@ The CockroachDB credentials can be found in your Huly `compose.yml` or via `dock
|
|
|
523
528
|
|
|
524
529
|
- **Bash wrapper scripts** (sourcing `.env` files) may not work reliably when launched by MCP clients on Windows. Prefer setting env vars directly in the MCP config JSON.
|
|
525
530
|
- **Docker pulls over SSH** may fail on Windows due to credential manager issues. Pull images from the server desktop if needed.
|
|
526
|
-
|