@firfi/huly-mcp 0.1.39 → 0.1.41
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 +23 -1
- package/dist/index.cjs +1364 -392
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -136,7 +136,7 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
136
136
|
<!-- tools:start -->
|
|
137
137
|
## Available Tools
|
|
138
138
|
|
|
139
|
-
**`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `activity`, `notifications`, `workspace`
|
|
139
|
+
**`TOOLSETS` categories:** `projects`, `issues`, `comments`, `milestones`, `documents`, `storage`, `attachments`, `contacts`, `channels`, `calendar`, `time tracking`, `search`, `activity`, `notifications`, `workspace`, `cards`, `labels`
|
|
140
140
|
|
|
141
141
|
### Projects
|
|
142
142
|
|
|
@@ -154,6 +154,7 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
154
154
|
| `create_issue` | Create a new issue in a Huly project. Optionally create as a sub-issue by specifying parentIssue. Description supports markdown formatting. Returns the created issue identifier. |
|
|
155
155
|
| `update_issue` | Update fields on an existing Huly issue. Only provided fields are modified. Description updates support markdown. |
|
|
156
156
|
| `add_issue_label` | Add a tag/label to a Huly issue. Creates the tag if it doesn't exist in the project. |
|
|
157
|
+
| `remove_issue_label` | Remove a tag/label from a Huly issue. Detaches the label reference; does not delete the label definition. |
|
|
157
158
|
| `delete_issue` | Permanently delete a Huly issue. This action cannot be undone. |
|
|
158
159
|
| `list_components` | List components in a Huly project. Components organize issues by area/feature. Returns components sorted by modification date (newest first). |
|
|
159
160
|
| `get_component` | Retrieve full details for a Huly component. Use this to view component content and metadata. |
|
|
@@ -330,5 +331,26 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
330
331
|
| `update_guest_settings` | Update workspace guest settings. Control read-only guest access and guest sign-up permissions. |
|
|
331
332
|
| `get_regions` | Get available regions for workspace creation. Returns region codes and display names. |
|
|
332
333
|
|
|
334
|
+
### Cards
|
|
335
|
+
|
|
336
|
+
| Tool | Description |
|
|
337
|
+
|------|-------------|
|
|
338
|
+
| `list_card_spaces` | List all Huly card spaces. Returns card spaces sorted by name. Card spaces are containers for cards. |
|
|
339
|
+
| `list_master_tags` | List master tags (card types) available in a Huly card space. Master tags define the type/schema of cards that can be created in a space. |
|
|
340
|
+
| `list_cards` | List cards in a Huly card space. Returns cards sorted by modification date (newest first). Supports filtering by type (master tag), title substring, and content search. |
|
|
341
|
+
| `get_card` | Retrieve full details for a Huly card including markdown content. Use this to view card content and metadata. |
|
|
342
|
+
| `create_card` | Create a new card in a Huly card space. Requires a master tag (card type). Content supports markdown formatting. Returns the created card id. |
|
|
343
|
+
| `update_card` | Update fields on an existing Huly card. Only provided fields are modified. Content updates support markdown. |
|
|
344
|
+
| `delete_card` | Permanently delete a Huly card. This action cannot be undone. |
|
|
345
|
+
|
|
346
|
+
### Labels
|
|
347
|
+
|
|
348
|
+
| Tool | Description |
|
|
349
|
+
|------|-------------|
|
|
350
|
+
| `list_labels` | List label/tag definitions in the workspace. Labels are global (not project-scoped). Returns labels for tracker issues sorted by modification date (newest first). |
|
|
351
|
+
| `create_label` | Create a new label/tag definition in the workspace. Labels are global and can be attached to any issue. Returns existing label if one with the same title already exists (created=false). Use add_issue_label to attach a label to a specific issue. |
|
|
352
|
+
| `update_label` | Update a label/tag definition. Accepts label ID or title. Only provided fields are modified. |
|
|
353
|
+
| `delete_label` | Permanently delete a label/tag definition. Accepts label ID or title. This action cannot be undone. |
|
|
354
|
+
|
|
333
355
|
<!-- tools:end -->
|
|
334
356
|
|