@structured-world/gitlab-mcp 4.0.0 → 4.1.1

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.
Files changed (86) hide show
  1. package/README.md +90 -4
  2. package/dist/entities/core/registry.js +162 -70
  3. package/dist/entities/core/registry.js.map +1 -1
  4. package/dist/entities/core/schema-readonly.d.ts +421 -199
  5. package/dist/entities/core/schema-readonly.js +222 -131
  6. package/dist/entities/core/schema-readonly.js.map +1 -1
  7. package/dist/entities/core/schema.d.ts +152 -61
  8. package/dist/entities/core/schema.js +111 -55
  9. package/dist/entities/core/schema.js.map +1 -1
  10. package/dist/entities/files/registry.js +5 -5
  11. package/dist/entities/files/registry.js.map +1 -1
  12. package/dist/entities/files/schema-readonly.d.ts +124 -24
  13. package/dist/entities/files/schema.d.ts +82 -17
  14. package/dist/entities/labels/registry.js +23 -34
  15. package/dist/entities/labels/registry.js.map +1 -1
  16. package/dist/entities/labels/schema-readonly.d.ts +26 -10
  17. package/dist/entities/labels/schema-readonly.js +5 -15
  18. package/dist/entities/labels/schema-readonly.js.map +1 -1
  19. package/dist/entities/labels/schema.d.ts +40 -11
  20. package/dist/entities/labels/schema.js +8 -23
  21. package/dist/entities/labels/schema.js.map +1 -1
  22. package/dist/entities/milestones/registry.js +44 -61
  23. package/dist/entities/milestones/registry.js.map +1 -1
  24. package/dist/entities/milestones/schema-readonly.d.ts +105 -30
  25. package/dist/entities/milestones/schema-readonly.js +7 -15
  26. package/dist/entities/milestones/schema-readonly.js.map +1 -1
  27. package/dist/entities/milestones/schema.d.ts +52 -19
  28. package/dist/entities/milestones/schema.js +8 -28
  29. package/dist/entities/milestones/schema.js.map +1 -1
  30. package/dist/entities/mrs/registry.js +20 -20
  31. package/dist/entities/mrs/registry.js.map +1 -1
  32. package/dist/entities/mrs/schema-readonly.d.ts +243 -68
  33. package/dist/entities/mrs/schema-readonly.js +83 -54
  34. package/dist/entities/mrs/schema-readonly.js.map +1 -1
  35. package/dist/entities/mrs/schema.d.ts +885 -142
  36. package/dist/entities/mrs/schema.js +113 -37
  37. package/dist/entities/mrs/schema.js.map +1 -1
  38. package/dist/entities/pipelines/registry.js +12 -12
  39. package/dist/entities/pipelines/registry.js.map +1 -1
  40. package/dist/entities/pipelines/schema-readonly.d.ts +525 -115
  41. package/dist/entities/pipelines/schema.d.ts +104 -30
  42. package/dist/entities/shared.d.ts +787 -110
  43. package/dist/entities/utils.d.ts +2 -2
  44. package/dist/entities/variables/registry.js +23 -33
  45. package/dist/entities/variables/registry.js.map +1 -1
  46. package/dist/entities/variables/schema-readonly.d.ts +30 -7
  47. package/dist/entities/variables/schema-readonly.js +4 -13
  48. package/dist/entities/variables/schema-readonly.js.map +1 -1
  49. package/dist/entities/variables/schema.d.ts +83 -26
  50. package/dist/entities/variables/schema.js +6 -21
  51. package/dist/entities/variables/schema.js.map +1 -1
  52. package/dist/entities/wiki/registry.js +25 -42
  53. package/dist/entities/wiki/registry.js.map +1 -1
  54. package/dist/entities/wiki/schema-readonly.d.ts +37 -8
  55. package/dist/entities/wiki/schema-readonly.js +4 -13
  56. package/dist/entities/wiki/schema-readonly.js.map +1 -1
  57. package/dist/entities/wiki/schema.d.ts +34 -9
  58. package/dist/entities/wiki/schema.js +6 -21
  59. package/dist/entities/wiki/schema.js.map +1 -1
  60. package/dist/entities/workitems/registry.js +94 -13
  61. package/dist/entities/workitems/registry.js.map +1 -1
  62. package/dist/entities/workitems/schema-readonly.d.ts +29 -32
  63. package/dist/entities/workitems/schema-readonly.js +7 -2
  64. package/dist/entities/workitems/schema-readonly.js.map +1 -1
  65. package/dist/entities/workitems/schema.d.ts +45 -21
  66. package/dist/graphql/workItems.d.ts +34 -1
  67. package/dist/graphql/workItems.js +349 -2
  68. package/dist/graphql/workItems.js.map +1 -1
  69. package/dist/handlers.js +44 -0
  70. package/dist/handlers.js.map +1 -1
  71. package/dist/registry-manager.d.ts +1 -0
  72. package/dist/registry-manager.js +54 -0
  73. package/dist/registry-manager.js.map +1 -1
  74. package/dist/services/ConnectionManager.js +3 -3
  75. package/dist/services/ConnectionManager.js.map +1 -1
  76. package/dist/services/SchemaIntrospector.js +3 -3
  77. package/dist/services/SchemaIntrospector.js.map +1 -1
  78. package/dist/services/ToolAvailability.js +30 -1
  79. package/dist/services/ToolAvailability.js.map +1 -1
  80. package/dist/structured-world-gitlab-mcp-4.1.1.tgz +0 -0
  81. package/dist/tsconfig.build.tsbuildinfo +1 -1
  82. package/dist/utils/namespace.d.ts +6 -0
  83. package/dist/utils/namespace.js +52 -0
  84. package/dist/utils/namespace.js.map +1 -0
  85. package/package.json +5 -3
  86. package/dist/structured-world-gitlab-mcp-4.0.0.tgz +0 -0
@@ -5,36 +5,48 @@ const zod_1 = require("zod");
5
5
  const utils_1 = require("../utils");
6
6
  const shared_1 = require("../shared");
7
7
  exports.GetBranchDiffsSchema = shared_1.ProjectParamsSchema.extend({
8
- from: zod_1.z.string().describe('The commit SHA or branch name to compare from'),
9
- to: zod_1.z.string().describe('The commit SHA or branch name to compare to'),
8
+ from: zod_1.z
9
+ .string()
10
+ .describe('Source reference for comparison: branch name or commit SHA. Example: "feature-branch" or "abc123def".'),
11
+ to: zod_1.z
12
+ .string()
13
+ .describe('Target reference for comparison: branch name or commit SHA. Example: "main" or "def456ghi".'),
10
14
  straight: utils_1.flexibleBoolean
11
15
  .optional()
12
- .describe('Comparison method, true for direct comparison, false for merge-base comparison'),
16
+ .describe('Comparison type: true=straight diff between refs, false=three-way diff from common ancestor (merge-base).'),
13
17
  });
14
18
  exports.GetMergeRequestSchema = shared_1.ProjectParamsSchema.extend({
15
- merge_request_iid: zod_1.z.coerce.string().optional().describe('The internal ID of the merge request'),
16
- branch_name: zod_1.z.string().optional().describe('Source branch name to find the merge request'),
19
+ merge_request_iid: zod_1.z.coerce
20
+ .string()
21
+ .optional()
22
+ .describe('Internal MR ID unique to project. Incremental number like !42. Preferred over global ID.'),
23
+ branch_name: zod_1.z
24
+ .string()
25
+ .optional()
26
+ .describe('Find MR by its source branch name. Alternative to using IID. Example: "feature-login".'),
17
27
  include_diverged_commits_count: zod_1.z
18
28
  .boolean()
19
29
  .optional()
20
- .describe('If true, response includes commits behind the target branch'),
30
+ .describe('Include count of commits the source branch is behind target. Shows if rebase needed.'),
21
31
  include_rebase_in_progress: zod_1.z
22
32
  .boolean()
23
33
  .optional()
24
- .describe('If true, response includes whether a rebase operation is in progress'),
34
+ .describe('Check if MR is currently being rebased. Useful for showing rebase status in UI.'),
25
35
  }).refine((data) => data.merge_request_iid ?? data.branch_name, {
26
36
  message: 'Either merge_request_iid or branch_name must be provided',
27
37
  });
28
38
  const BaseMergeRequestSchema = shared_1.ProjectParamsSchema.extend({
29
- merge_request_iid: zod_1.z.coerce.string().describe('The internal ID of the merge request'),
39
+ merge_request_iid: zod_1.z.coerce
40
+ .string()
41
+ .describe('Internal MR ID unique to project. Example: 42 for MR !42.'),
30
42
  include_diverged_commits_count: zod_1.z
31
43
  .boolean()
32
44
  .optional()
33
- .describe('If true, response includes commits behind the target branch'),
45
+ .describe('Include count of commits the source branch is behind target. Shows if rebase needed.'),
34
46
  include_rebase_in_progress: zod_1.z
35
47
  .boolean()
36
48
  .optional()
37
- .describe('If true, response includes whether a rebase operation is in progress'),
49
+ .describe('Check if MR is currently being rebased. Useful for showing rebase status in UI.'),
38
50
  });
39
51
  exports.GetMergeRequestDiffsSchema = BaseMergeRequestSchema.extend({
40
52
  page: zod_1.z.number().optional(),
@@ -45,169 +57,186 @@ exports.ListMergeRequestDiffsSchema = BaseMergeRequestSchema.extend({
45
57
  per_page: zod_1.z.number().optional(),
46
58
  });
47
59
  exports.ListMergeRequestDiscussionsSchema = shared_1.ProjectParamsSchema.extend({
48
- merge_request_iid: zod_1.z.coerce.string().describe('The internal ID of the merge request'),
60
+ merge_request_iid: zod_1.z.coerce
61
+ .string()
62
+ .describe('Internal MR ID unique to project. Example: 42 for MR !42.'),
49
63
  }).merge(shared_1.PaginationOptionsSchema);
50
64
  exports.GetDraftNoteSchema = shared_1.ProjectParamsSchema.extend({
51
- merge_request_iid: zod_1.z.coerce.string().describe('The internal ID of the merge request'),
52
- draft_note_id: zod_1.z.coerce.string().describe('The ID of the draft note'),
65
+ merge_request_iid: zod_1.z.coerce
66
+ .string()
67
+ .describe('Internal MR ID unique to project. Example: 42 for MR !42.'),
68
+ draft_note_id: zod_1.z.coerce
69
+ .string()
70
+ .describe('Unique identifier of the draft note/comment. Draft notes are unpublished review comments.'),
53
71
  });
54
72
  exports.ListDraftNotesSchema = shared_1.ProjectParamsSchema.extend({
55
- merge_request_iid: zod_1.z.coerce.string().describe('The internal ID of the merge request'),
73
+ merge_request_iid: zod_1.z.coerce
74
+ .string()
75
+ .describe('Internal MR ID unique to project. Example: 42 for MR !42.'),
56
76
  });
57
77
  exports.ListMergeRequestsSchema = zod_1.z
58
78
  .object({
59
79
  project_id: zod_1.z.coerce
60
80
  .string()
61
81
  .optional()
62
- .describe('Project ID to filter merge requests by project (optional for global search)'),
82
+ .describe('Project identifier for filtering. Use numeric ID or URL-encoded path. Optional for cross-project search.'),
63
83
  state: zod_1.z
64
84
  .enum(['opened', 'closed', 'locked', 'merged', 'all'])
65
85
  .optional()
66
- .describe('Return all merge requests or filter by state'),
86
+ .describe('MR state filter: opened=active, closed=rejected, merged=accepted, locked=read-only, all=everything.'),
67
87
  order_by: zod_1.z
68
88
  .enum(['created_at', 'updated_at', 'title', 'priority'])
69
89
  .optional()
70
- .describe('Return merge requests ordered by created_at, updated_at, title, or priority fields'),
71
- sort: zod_1.z.enum(['asc', 'desc']).optional().describe('Sort order'),
72
- milestone: zod_1.z.string().optional().describe('Filter by milestone title'),
90
+ .describe('Sort field: created_at=creation date, updated_at=last modification, title=alphabetical, priority=importance level.'),
91
+ sort: zod_1.z
92
+ .enum(['asc', 'desc'])
93
+ .optional()
94
+ .describe('Sort direction: asc=ascending (oldest/A-Z first), desc=descending (newest/Z-A first).'),
95
+ milestone: zod_1.z
96
+ .string()
97
+ .optional()
98
+ .describe('Filter by milestone title. Use "None" for no milestone, "Any" for any milestone.'),
73
99
  view: zod_1.z
74
100
  .enum(['simple', 'full'])
75
101
  .optional()
76
- .describe('Return a limited set of merge request attributes'),
102
+ .describe('Response detail level: simple=basic fields only for performance, full=complete MR details.'),
77
103
  labels: zod_1.z
78
104
  .union([zod_1.z.string(), zod_1.z.array(zod_1.z.string())])
79
105
  .optional()
80
- .describe('Label names or comma-separated list of label names'),
106
+ .describe('Filter by labels. Pass single label, comma-separated string, or array. Example: "bug,priority::high".'),
81
107
  with_labels_details: utils_1.flexibleBoolean
82
108
  .optional()
83
- .describe('Include detailed label information instead of just label names'),
109
+ .describe('Return full label objects with colors and descriptions instead of just names.'),
84
110
  with_merge_status_recheck: utils_1.flexibleBoolean
85
111
  .optional()
86
- .describe('Whether merge status for all returned merge requests should be rechecked asynchronously'),
112
+ .describe('Trigger async recheck of merge status for all results. Updates can_be_merged field accuracy.'),
87
113
  created_after: zod_1.z
88
114
  .string()
89
115
  .optional()
90
- .describe('Return merge requests created on or after the given time'),
116
+ .describe('Filter MRs created after this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
91
117
  created_before: zod_1.z
92
118
  .string()
93
119
  .optional()
94
- .describe('Return merge requests created on or before the given time'),
120
+ .describe('Filter MRs created before this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
95
121
  updated_after: zod_1.z
96
122
  .string()
97
123
  .optional()
98
- .describe('Return merge requests updated on or after the given time'),
124
+ .describe('Filter MRs modified after this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
99
125
  updated_before: zod_1.z
100
126
  .string()
101
127
  .optional()
102
- .describe('Return merge requests updated on or before the given time'),
128
+ .describe('Filter MRs modified before this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
103
129
  scope: zod_1.z
104
130
  .enum(['created_by_me', 'assigned_to_me', 'all'])
105
131
  .optional()
106
- .describe('Return merge requests for the given scope'),
132
+ .describe("Filter scope: created_by_me=you authored, assigned_to_me=you're assignee, all=no filter."),
107
133
  author_id: zod_1.z
108
134
  .number()
109
135
  .optional()
110
- .describe('Returns merge requests created by the given user id'),
136
+ .describe("Filter by author's numeric user ID. Use to find MRs from specific user."),
111
137
  author_username: zod_1.z
112
138
  .string()
113
139
  .optional()
114
- .describe('Returns merge requests created by the given username'),
140
+ .describe('Filter by author\'s username. Alternative to author_id. Example: "johndoe".'),
115
141
  assignee_id: zod_1.z
116
142
  .number()
117
143
  .optional()
118
- .describe('Returns merge requests assigned to the given user id'),
144
+ .describe("Filter by assignee's numeric user ID. Find MRs assigned to specific user."),
119
145
  assignee_username: zod_1.z
120
146
  .string()
121
147
  .optional()
122
- .describe('Returns merge requests assigned to the given username'),
148
+ .describe('Filter by assignee\'s username. Alternative to assignee_id. Use "None" for unassigned.'),
123
149
  my_reaction_emoji: zod_1.z
124
150
  .string()
125
151
  .optional()
126
- .describe('Return merge requests reacted by the authenticated user by the given emoji'),
152
+ .describe('Filter MRs you\'ve reacted to with specific emoji. Example: "thumbsup" or "heart".'),
127
153
  source_branch: zod_1.z
128
154
  .string()
129
155
  .optional()
130
- .describe('Return merge requests with the given source branch'),
156
+ .describe('Filter by source branch name. Find MRs from specific feature branch.'),
131
157
  target_branch: zod_1.z
132
158
  .string()
133
159
  .optional()
134
- .describe('Return merge requests with the given target branch'),
160
+ .describe('Filter by target branch name. Usually "main" or "master". Find MRs targeting specific branch.'),
135
161
  search: zod_1.z
136
162
  .string()
137
163
  .optional()
138
- .describe('Search merge requests against their title and description'),
164
+ .describe('Text search in MR title and/or description. Partial matches supported. Case-insensitive.'),
139
165
  in: zod_1.z
140
166
  .enum(['title', 'description', 'title,description'])
141
167
  .optional()
142
- .describe('Modify the scope of the search attribute'),
168
+ .describe('Search scope: title=title only, description=body only, title,description=both (default).'),
143
169
  wip: zod_1.z
144
170
  .enum(['yes', 'no'])
145
171
  .optional()
146
- .describe('Filter merge requests against their wip status'),
172
+ .describe('Draft/WIP filter: yes=draft MRs only, no=ready MRs only. Draft MRs start with "Draft:" or "WIP:".'),
147
173
  not: zod_1.z
148
174
  .object({
149
175
  labels: zod_1.z
150
176
  .union([zod_1.z.string(), zod_1.z.array(zod_1.z.string())])
151
177
  .optional()
152
- .describe('Return merge requests that do not match the parameters supplied'),
178
+ .describe('Exclude MRs with these labels. Inverse filter for labels.'),
153
179
  milestone: zod_1.z
154
180
  .string()
155
181
  .optional()
156
- .describe('Return merge requests that do not match the milestone'),
182
+ .describe('Exclude MRs with this milestone. Use for "not in milestone X" queries.'),
157
183
  author_id: zod_1.z
158
184
  .number()
159
185
  .optional()
160
- .describe('Return merge requests that do not match the author id'),
186
+ .describe('Exclude MRs created by this user ID. Find MRs NOT from specific author.'),
161
187
  author_username: zod_1.z
162
188
  .string()
163
189
  .optional()
164
- .describe('Return merge requests that do not match the author username'),
190
+ .describe('Exclude MRs created by this username. Alternative to not.author_id.'),
165
191
  assignee_id: zod_1.z
166
192
  .number()
167
193
  .optional()
168
- .describe('Return merge requests that do not match the assignee id'),
194
+ .describe('Exclude MRs assigned to this user ID. Find unassigned or differently assigned MRs.'),
169
195
  assignee_username: zod_1.z
170
196
  .string()
171
197
  .optional()
172
- .describe('Return merge requests that do not match the assignee username'),
198
+ .describe('Exclude MRs assigned to this username. Alternative to not.assignee_id.'),
173
199
  my_reaction_emoji: zod_1.z
174
200
  .string()
175
201
  .optional()
176
- .describe('Return merge requests not reacted by the authenticated user by the given emoji'),
202
+ .describe("Exclude MRs you've reacted to with this emoji. Inverse of my_reaction_emoji."),
177
203
  })
178
204
  .optional(),
179
205
  environment: zod_1.z
180
206
  .string()
181
207
  .optional()
182
- .describe('Returns merge requests deployed to the given environment'),
208
+ .describe('Filter by deployment environment name. Example: "production", "staging". Requires deployments.'),
183
209
  deployed_before: zod_1.z
184
210
  .string()
185
211
  .optional()
186
- .describe('Return merge requests deployed before the given date/time'),
212
+ .describe('Filter MRs deployed before this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
187
213
  deployed_after: zod_1.z
188
214
  .string()
189
215
  .optional()
190
- .describe('Return merge requests deployed after the given date/time'),
216
+ .describe('Filter MRs deployed after this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601).'),
191
217
  approved_by_ids: zod_1.z
192
218
  .array(zod_1.z.number())
193
219
  .optional()
194
- .describe('Returns merge requests which have been approved by all the users with the given ids'),
220
+ .describe('Filter MRs approved by ALL specified user IDs. Pass array of IDs. Requires all approvals.'),
195
221
  approved_by_usernames: zod_1.z
196
222
  .array(zod_1.z.string())
197
223
  .optional()
198
- .describe('Returns merge requests which have been approved by all the users with the given usernames'),
224
+ .describe('Filter MRs approved by ALL specified usernames. Pass array. Alternative to approved_by_ids.'),
199
225
  reviewer_id: zod_1.z
200
226
  .number()
201
227
  .optional()
202
- .describe('Returns merge requests which have the user as a reviewer with the given user id'),
228
+ .describe('Filter MRs where this user ID is a reviewer. Different from assignee - reviewers provide feedback.'),
203
229
  reviewer_username: zod_1.z
204
230
  .string()
205
231
  .optional()
206
- .describe('Returns merge requests which have the user as a reviewer with the given username'),
232
+ .describe('Filter MRs where this username is a reviewer. Alternative to reviewer_id.'),
207
233
  with_api_entity_associations: utils_1.flexibleBoolean
208
234
  .optional()
209
- .describe('Include associations that are normally only returned with the merge request API'),
210
- min_access_level: zod_1.z.number().optional().describe('Limit by current user minimal access level'),
235
+ .describe('Include extra API associations like head_pipeline. Adds more data but slower response.'),
236
+ min_access_level: zod_1.z
237
+ .number()
238
+ .optional()
239
+ .describe('Minimum access level filter. 10=Guest, 20=Reporter, 30=Developer, 40=Maintainer, 50=Owner.'),
211
240
  })
212
241
  .merge(shared_1.PaginationOptionsSchema);
213
242
  //# sourceMappingURL=schema-readonly.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema-readonly.js","sourceRoot":"","sources":["../../../src/entities/mrs/schema-readonly.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema-readonly.js","sourceRoot":"","sources":["../../../src/entities/mrs/schema-readonly.ts"],"names":[],"mappings":"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"}