@firfi/huly-mcp 0.37.0 → 0.38.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 +19 -1
- package/dist/index.cjs +3231 -1042
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -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`, `collaborators`, `custom-fields`, `drive`, `inventory`, `labels`, `leads`, `templates`, `planner`, `processes`, `recruiting`, `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`, `boards`, `cards`, `collaborators`, `custom-fields`, `drive`, `inventory`, `labels`, `leads`, `templates`, `planner`, `processes`, `recruiting`, `sdk-discovery`, `spaces`, `tag-categories`, `tags`, `task-management`, `test-management`, `user-statuses`, `virtual-office`
|
|
326
326
|
|
|
327
327
|
### Projects
|
|
328
328
|
|
|
@@ -622,6 +622,24 @@ SDK upgrade revisit:
|
|
|
622
622
|
| `create_access_link` | Create a Huly workspace access link. When role is omitted, 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. |
|
|
623
623
|
| `get_regions` | Get available regions for workspace creation. Returns region codes and display names. |
|
|
624
624
|
|
|
625
|
+
### Boards
|
|
626
|
+
|
|
627
|
+
| Tool | Description |
|
|
628
|
+
|------|-------------|
|
|
629
|
+
| `list_boards` | List Huly boards from @hcengineering/board, sorted by name. Boards are task.Project-backed spaces; this is not the separate Huly Card module. |
|
|
630
|
+
| `get_board` | Get one Huly board by board _id or exact board name. Returns board metadata, project type, and card count. |
|
|
631
|
+
| `create_board` | Create a Huly board. Idempotent by exact active board name; pass projectType by _id or exact name only when the default board project type is ambiguous. |
|
|
632
|
+
| `update_board` | Update a Huly board's name, description, or privacy. board accepts board _id or exact board name. |
|
|
633
|
+
| `archive_board` | Archive a Huly board by board _id or exact board name. This hides the board but does not delete cards. |
|
|
634
|
+
| `unarchive_board` | Unarchive a Huly board by board _id or exact board name. |
|
|
635
|
+
| `list_board_cards` | List cards on one @hcengineering/board board. board accepts board _id or exact board name; cards are sorted newest modified first. |
|
|
636
|
+
| `get_board_card` | Get one board card. board accepts board _id or exact board name; card accepts card _id, CARD-123, bare number 123, or exact title scoped to the board. |
|
|
637
|
+
| `create_board_card` | Create a board card with safe defaults. Resolves kind/status from the board project type, increments the CARD-number sequence, and stores markdown description as inline Huly Markup. |
|
|
638
|
+
| `update_board_card` | Update board card fields: title, markdown description, status, assignee, members, location, cover, startDate, and dueDate. Use null to clear clearable fields. |
|
|
639
|
+
| `archive_board_card` | Archive a board card. card accepts _id, CARD-123, bare number, or exact title scoped to the board. |
|
|
640
|
+
| `unarchive_board_card` | Unarchive a board card. card accepts _id, CARD-123, bare number, or exact title scoped to the board. |
|
|
641
|
+
| `delete_board_card` | Permanently delete an already archived board card using Huly removeCollection. Active cards are rejected; call archive_board_card first. |
|
|
642
|
+
|
|
625
643
|
### Cards
|
|
626
644
|
|
|
627
645
|
| Tool | Description |
|