@firfi/huly-mcp 0.18.2 → 0.19.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 +13 -1
- package/dist/index.cjs +1060 -549
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -265,7 +265,7 @@ Resource roadmap:
|
|
|
265
265
|
<!-- AUTO-GENERATED from src/mcp/tools/ descriptions. Do not edit manually. Run `pnpm update-readme` to regenerate. -->
|
|
266
266
|
## Available Tools
|
|
267
267
|
|
|
268
|
-
**`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `associations`, `activity`, `notifications`, `workspace`, `cards`, `custom-fields`, `labels`, `leads`, `processes`, `tag-categories`, `task-management`, `test-management`, `user-statuses`
|
|
268
|
+
**`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `associations`, `activity`, `notifications`, `workspace`, `cards`, `custom-fields`, `labels`, `leads`, `processes`, `tag-categories`, `tags`, `task-management`, `test-management`, `user-statuses`
|
|
269
269
|
|
|
270
270
|
### Projects
|
|
271
271
|
|
|
@@ -560,6 +560,18 @@ Resource roadmap:
|
|
|
560
560
|
| `update_tag_category` | Update a tag/label category. Accepts category ID or label name. Only provided fields are modified. |
|
|
561
561
|
| `delete_tag_category` | Permanently delete a tag/label category. Accepts category ID or label name. Labels in this category will be orphaned (not deleted). This action cannot be undone. |
|
|
562
562
|
|
|
563
|
+
### Tags
|
|
564
|
+
|
|
565
|
+
| Tool | Description |
|
|
566
|
+
|------|-------------|
|
|
567
|
+
| `list_tags` | List generic Huly tag definitions for one SDK target class. Use this for SDK-level tags such as recruiting skills or document labels. For Tracker issue labels, prefer list_labels. |
|
|
568
|
+
| `create_tag` | Create a generic Huly tag definition for one targetClass. Idempotent by targetClass + title. This exposes the SDK tags model; for Tracker issue labels, prefer create_label. |
|
|
569
|
+
| `update_tag` | Update a generic Huly tag definition. The tag argument accepts a tag ID or exact title, resolved within targetClass. |
|
|
570
|
+
| `delete_tag` | Delete a generic Huly tag definition by ID or exact title, resolved within targetClass. This deletes the tag definition, not only one object's tag reference. |
|
|
571
|
+
| `list_attached_tags` | List generic Huly TagReference rows attached to one raw object collection. Requires objectId, objectClass, space, and collection because this is an SDK-level tool. |
|
|
572
|
+
| `attach_tag` | Attach a generic Huly tag to one raw object collection. Requires targetClass for the tag definition and objectId/objectClass/space/collection for the TagReference. Idempotent for the same object, collection, and tag. |
|
|
573
|
+
| `detach_tag` | Detach a generic Huly tag from one raw object collection. Requires targetClass and objectId/objectClass/space/collection. Returns detached=false when the tag is not attached. |
|
|
574
|
+
|
|
563
575
|
### Task-Management
|
|
564
576
|
|
|
565
577
|
| Tool | Description |
|