@firfi/huly-mcp 0.1.14 → 0.1.15
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 +111 -0
- package/dist/index.js +0 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -122,3 +122,114 @@ MCP_TRANSPORT=http MCP_HTTP_PORT=8080 MCP_HTTP_HOST=0.0.0.0 npx -y @firfi/huly-m
|
|
|
122
122
|
| `MCP_TRANSPORT` | No | Transport type: `stdio` (default) or `http` |
|
|
123
123
|
| `MCP_HTTP_PORT` | No | HTTP server port (default: 3000) |
|
|
124
124
|
| `MCP_HTTP_HOST` | No | HTTP server host (default: 127.0.0.1) |
|
|
125
|
+
|
|
126
|
+
<!-- tools:start -->
|
|
127
|
+
## Available Tools
|
|
128
|
+
|
|
129
|
+
### Projects
|
|
130
|
+
|
|
131
|
+
| Tool | Description |
|
|
132
|
+
|------|-------------|
|
|
133
|
+
| `list_projects` | List all Huly projects. Returns projects sorted by name. Supports filtering by archived status. |
|
|
134
|
+
|
|
135
|
+
### Issues
|
|
136
|
+
|
|
137
|
+
| Tool | Description |
|
|
138
|
+
|------|-------------|
|
|
139
|
+
| `list_issues` | Query Huly issues with optional filters. Returns issues sorted by modification date (newest first). Supports filtering by project, status, assignee, and milestone. |
|
|
140
|
+
| `get_issue` | Retrieve full details for a Huly issue including markdown description. Use this to view issue content, comments, or full metadata. |
|
|
141
|
+
| `create_issue` | Create a new issue in a Huly project. Description supports markdown formatting. Returns the created issue identifier. |
|
|
142
|
+
| `update_issue` | Update fields on an existing Huly issue. Only provided fields are modified. Description updates support markdown. |
|
|
143
|
+
| `add_issue_label` | Add a tag/label to a Huly issue. Creates the tag if it doesn't exist in the project. |
|
|
144
|
+
| `delete_issue` | Permanently delete a Huly issue. This action cannot be undone. |
|
|
145
|
+
|
|
146
|
+
### Comments
|
|
147
|
+
|
|
148
|
+
| Tool | Description |
|
|
149
|
+
|------|-------------|
|
|
150
|
+
| `list_comments` | List comments on a Huly issue. Returns comments sorted by creation date (oldest first). |
|
|
151
|
+
| `add_comment` | Add a comment to a Huly issue. Comment body supports markdown formatting. |
|
|
152
|
+
| `update_comment` | Update an existing comment on a Huly issue. Comment body supports markdown formatting. |
|
|
153
|
+
| `delete_comment` | Delete a comment from a Huly issue. This action cannot be undone. |
|
|
154
|
+
|
|
155
|
+
### Milestones
|
|
156
|
+
|
|
157
|
+
| Tool | Description |
|
|
158
|
+
|------|-------------|
|
|
159
|
+
| `list_milestones` | List milestones in a Huly project. Returns milestones sorted by modification date (newest first). |
|
|
160
|
+
| `get_milestone` | Retrieve full details for a Huly milestone. Use this to view milestone content and metadata. |
|
|
161
|
+
| `create_milestone` | Create a new milestone in a Huly project. Returns the created milestone ID and label. |
|
|
162
|
+
| `update_milestone` | Update fields on an existing Huly milestone. Only provided fields are modified. |
|
|
163
|
+
| `set_issue_milestone` | Set or clear the milestone on a Huly issue. Pass null for milestone to clear it. |
|
|
164
|
+
| `delete_milestone` | Permanently delete a Huly milestone. This action cannot be undone. |
|
|
165
|
+
|
|
166
|
+
### Documents
|
|
167
|
+
|
|
168
|
+
| Tool | Description |
|
|
169
|
+
|------|-------------|
|
|
170
|
+
| `list_teamspaces` | List all Huly document teamspaces. Returns teamspaces sorted by name. Supports filtering by archived status. |
|
|
171
|
+
| `list_documents` | List documents in a Huly teamspace. Returns documents sorted by modification date (newest first). |
|
|
172
|
+
| `get_document` | Retrieve full details for a Huly document including markdown content. Use this to view document content and metadata. |
|
|
173
|
+
| `create_document` | Create a new document in a Huly teamspace. Content supports markdown formatting. Returns the created document id. |
|
|
174
|
+
| `update_document` | Update fields on an existing Huly document. Only provided fields are modified. Content updates support markdown. |
|
|
175
|
+
| `delete_document` | Permanently delete a Huly document. This action cannot be undone. |
|
|
176
|
+
|
|
177
|
+
### Storage
|
|
178
|
+
|
|
179
|
+
| Tool | Description |
|
|
180
|
+
|------|-------------|
|
|
181
|
+
| `upload_file` | Upload a file to Huly storage. Provide ONE of: filePath (local file - preferred), fileUrl (fetch from URL), or data (base64 - for small files only). Returns blob ID and URL for referencing the file. |
|
|
182
|
+
|
|
183
|
+
### Contacts
|
|
184
|
+
|
|
185
|
+
| Tool | Description |
|
|
186
|
+
|------|-------------|
|
|
187
|
+
| `list_persons` | List all persons in the Huly workspace. Returns persons sorted by modification date (newest first). |
|
|
188
|
+
| `get_person` | Retrieve full details for a person including contact channels. Use personId or email to identify the person. |
|
|
189
|
+
| `create_person` | Create a new person in Huly. Returns the created person ID. |
|
|
190
|
+
| `update_person` | Update fields on an existing person. Only provided fields are modified. |
|
|
191
|
+
| `delete_person` | Permanently delete a person from Huly. This action cannot be undone. |
|
|
192
|
+
| `list_employees` | List employees (persons who are team members). Returns employees sorted by modification date (newest first). |
|
|
193
|
+
| `list_organizations` | List all organizations in the Huly workspace. Returns organizations sorted by modification date (newest first). |
|
|
194
|
+
| `create_organization` | Create a new organization in Huly. Optionally add members by person ID or email. Returns the created organization ID. |
|
|
195
|
+
|
|
196
|
+
### Channels
|
|
197
|
+
|
|
198
|
+
| Tool | Description |
|
|
199
|
+
|------|-------------|
|
|
200
|
+
| `list_channels` | List all Huly channels. Returns channels sorted by name. Supports filtering by archived status. |
|
|
201
|
+
| `get_channel` | Retrieve full details for a Huly channel including topic and member list. |
|
|
202
|
+
| `create_channel` | Create a new channel in Huly. Returns the created channel ID and name. |
|
|
203
|
+
| `update_channel` | Update fields on an existing Huly channel. Only provided fields are modified. |
|
|
204
|
+
| `delete_channel` | Permanently delete a Huly channel. This action cannot be undone. |
|
|
205
|
+
| `list_channel_messages` | List messages in a Huly channel. Returns messages sorted by date (newest first). |
|
|
206
|
+
| `send_channel_message` | Send a message to a Huly channel. Message body supports markdown formatting. |
|
|
207
|
+
| `list_direct_messages` | List direct message conversations in Huly. Returns conversations sorted by date (newest first). |
|
|
208
|
+
|
|
209
|
+
### Calendar
|
|
210
|
+
|
|
211
|
+
| Tool | Description |
|
|
212
|
+
|------|-------------|
|
|
213
|
+
| `list_events` | List calendar events. Returns events sorted by date. Supports filtering by date range. |
|
|
214
|
+
| `get_event` | Retrieve full details for a calendar event including description. Use this to view event content and metadata. |
|
|
215
|
+
| `create_event` | Create a new calendar event. Description supports markdown formatting. Returns the created event ID. |
|
|
216
|
+
| `update_event` | Update fields on an existing calendar event. Only provided fields are modified. Description updates support markdown. |
|
|
217
|
+
| `delete_event` | Permanently delete a calendar event. This action cannot be undone. |
|
|
218
|
+
| `list_recurring_events` | List recurring event definitions. Returns recurring events sorted by modification date (newest first). |
|
|
219
|
+
| `create_recurring_event` | Create a new recurring calendar event with RFC5545 RRULE rules. Description supports markdown. Returns the created event ID. |
|
|
220
|
+
| `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). |
|
|
221
|
+
|
|
222
|
+
### Time Tracking
|
|
223
|
+
|
|
224
|
+
| Tool | Description |
|
|
225
|
+
|------|-------------|
|
|
226
|
+
| `log_time` | Log time spent on a Huly issue. Records a time entry with optional description. Time value is in minutes. |
|
|
227
|
+
| `get_time_report` | Get time tracking report for a specific Huly issue. Shows total time, estimation, remaining time, and all time entries. |
|
|
228
|
+
| `list_time_spend_reports` | List all time entries across issues. Supports filtering by project and date range. Returns entries sorted by date (newest first). |
|
|
229
|
+
| `get_detailed_time_report` | Get detailed time breakdown for a project. Shows total time grouped by issue and by employee. Supports date range filtering. |
|
|
230
|
+
| `list_work_slots` | List scheduled work slots. Shows planned time blocks attached to ToDos. Supports filtering by employee and date range. |
|
|
231
|
+
| `create_work_slot` | Create a scheduled work slot. Attaches a time block to a ToDo for planning purposes. |
|
|
232
|
+
| `start_timer` | Start a client-side timer on a Huly issue. Validates the issue exists and returns a start timestamp. Use log_time to record the elapsed time when done. |
|
|
233
|
+
| `stop_timer` | Stop a client-side timer on a Huly issue. Returns the stop timestamp. Calculate elapsed time from start/stop timestamps and use log_time to record it. |
|
|
234
|
+
|
|
235
|
+
<!-- tools:end -->
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -19,16 +19,6 @@
|
|
|
19
19
|
"url": "https://github.com/dearlordylord/huly-mcp/issues"
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/dearlordylord/huly-mcp#readme",
|
|
22
|
-
"scripts": {
|
|
23
|
-
"prepare": "husky",
|
|
24
|
-
"start": "node dist/index.cjs",
|
|
25
|
-
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws",
|
|
26
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
27
|
-
"test": "vitest run",
|
|
28
|
-
"test:watch": "vitest",
|
|
29
|
-
"lint": "eslint src --ext .ts",
|
|
30
|
-
"lint:fix": "eslint src --ext .ts --fix"
|
|
31
|
-
},
|
|
32
22
|
"bin": {
|
|
33
23
|
"huly-mcp": "./dist/index.cjs",
|
|
34
24
|
"@firfi/huly-mcp": "./dist/index.cjs"
|
|
@@ -89,5 +79,15 @@
|
|
|
89
79
|
"typescript": "^5.9.3",
|
|
90
80
|
"typescript-eslint": "^8.54.0",
|
|
91
81
|
"vitest": "latest"
|
|
82
|
+
},
|
|
83
|
+
"scripts": {
|
|
84
|
+
"start": "node dist/index.cjs",
|
|
85
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws",
|
|
86
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
87
|
+
"test": "vitest run",
|
|
88
|
+
"test:watch": "vitest",
|
|
89
|
+
"lint": "eslint src --ext .ts",
|
|
90
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
91
|
+
"update-readme": "tsx scripts/update-readme-tools.ts"
|
|
92
92
|
}
|
|
93
|
-
}
|
|
93
|
+
}
|