@ttpears/gitlab-mcp-server 1.9.0 → 1.10.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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -173,6 +173,10 @@ docker compose down && docker compose -f docker-compose.yml -f docker-compose.ov
|
|
|
173
173
|
| `get_project_statistics` | Aggregate project stats dashboard |
|
|
174
174
|
| `get_user_issues` | Get all issues assigned to a user |
|
|
175
175
|
| `get_user_merge_requests` | Get MRs authored by or assigned to a user |
|
|
176
|
+
| `get_work_item` | Fetch a work item (issue, task, epic, incident, OKR) by ID with full widget data |
|
|
177
|
+
| `list_work_items` | List work items in a group or project, filtered by type and state |
|
|
178
|
+
| `list_broadcast_messages` | List instance-wide broadcast messages |
|
|
179
|
+
| `get_broadcast_message` | Get a specific broadcast message by ID |
|
|
176
180
|
| `resolve_path` | Resolve a path to a project or group |
|
|
177
181
|
| `get_available_queries` | Discover available GraphQL operations |
|
|
178
182
|
| `execute_custom_query` | Run custom GraphQL queries |
|
|
@@ -186,6 +190,9 @@ docker compose down && docker compose -f docker-compose.yml -f docker-compose.ov
|
|
|
186
190
|
| `manage_pipeline` | Retry or cancel a CI/CD pipeline |
|
|
187
191
|
| `update_issue` | Update title, description, assignees, labels, due date |
|
|
188
192
|
| `update_merge_request` | Update title, description, assignees, reviewers, labels |
|
|
193
|
+
| `create_broadcast_message` | Create a broadcast message (instance admin) |
|
|
194
|
+
| `update_broadcast_message` | Update a broadcast message (instance admin) |
|
|
195
|
+
| `delete_broadcast_message` | Delete a broadcast message (instance admin) |
|
|
189
196
|
|
|
190
197
|
---
|
|
191
198
|
|