@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.
- package/README.md +90 -4
- package/dist/entities/core/registry.js +162 -70
- package/dist/entities/core/registry.js.map +1 -1
- package/dist/entities/core/schema-readonly.d.ts +421 -199
- package/dist/entities/core/schema-readonly.js +222 -131
- package/dist/entities/core/schema-readonly.js.map +1 -1
- package/dist/entities/core/schema.d.ts +152 -61
- package/dist/entities/core/schema.js +111 -55
- package/dist/entities/core/schema.js.map +1 -1
- package/dist/entities/files/registry.js +5 -5
- package/dist/entities/files/registry.js.map +1 -1
- package/dist/entities/files/schema-readonly.d.ts +124 -24
- package/dist/entities/files/schema.d.ts +82 -17
- package/dist/entities/labels/registry.js +23 -34
- package/dist/entities/labels/registry.js.map +1 -1
- package/dist/entities/labels/schema-readonly.d.ts +26 -10
- package/dist/entities/labels/schema-readonly.js +5 -15
- package/dist/entities/labels/schema-readonly.js.map +1 -1
- package/dist/entities/labels/schema.d.ts +40 -11
- package/dist/entities/labels/schema.js +8 -23
- package/dist/entities/labels/schema.js.map +1 -1
- package/dist/entities/milestones/registry.js +44 -61
- package/dist/entities/milestones/registry.js.map +1 -1
- package/dist/entities/milestones/schema-readonly.d.ts +105 -30
- package/dist/entities/milestones/schema-readonly.js +7 -15
- package/dist/entities/milestones/schema-readonly.js.map +1 -1
- package/dist/entities/milestones/schema.d.ts +52 -19
- package/dist/entities/milestones/schema.js +8 -28
- package/dist/entities/milestones/schema.js.map +1 -1
- package/dist/entities/mrs/registry.js +20 -20
- package/dist/entities/mrs/registry.js.map +1 -1
- package/dist/entities/mrs/schema-readonly.d.ts +243 -68
- package/dist/entities/mrs/schema-readonly.js +83 -54
- package/dist/entities/mrs/schema-readonly.js.map +1 -1
- package/dist/entities/mrs/schema.d.ts +885 -142
- package/dist/entities/mrs/schema.js +113 -37
- package/dist/entities/mrs/schema.js.map +1 -1
- package/dist/entities/pipelines/registry.js +12 -12
- package/dist/entities/pipelines/registry.js.map +1 -1
- package/dist/entities/pipelines/schema-readonly.d.ts +525 -115
- package/dist/entities/pipelines/schema.d.ts +104 -30
- package/dist/entities/shared.d.ts +787 -110
- package/dist/entities/utils.d.ts +2 -2
- package/dist/entities/variables/registry.js +23 -33
- package/dist/entities/variables/registry.js.map +1 -1
- package/dist/entities/variables/schema-readonly.d.ts +30 -7
- package/dist/entities/variables/schema-readonly.js +4 -13
- package/dist/entities/variables/schema-readonly.js.map +1 -1
- package/dist/entities/variables/schema.d.ts +83 -26
- package/dist/entities/variables/schema.js +6 -21
- package/dist/entities/variables/schema.js.map +1 -1
- package/dist/entities/wiki/registry.js +25 -42
- package/dist/entities/wiki/registry.js.map +1 -1
- package/dist/entities/wiki/schema-readonly.d.ts +37 -8
- package/dist/entities/wiki/schema-readonly.js +4 -13
- package/dist/entities/wiki/schema-readonly.js.map +1 -1
- package/dist/entities/wiki/schema.d.ts +34 -9
- package/dist/entities/wiki/schema.js +6 -21
- package/dist/entities/wiki/schema.js.map +1 -1
- package/dist/entities/workitems/registry.js +94 -13
- package/dist/entities/workitems/registry.js.map +1 -1
- package/dist/entities/workitems/schema-readonly.d.ts +29 -32
- package/dist/entities/workitems/schema-readonly.js +7 -2
- package/dist/entities/workitems/schema-readonly.js.map +1 -1
- package/dist/entities/workitems/schema.d.ts +45 -21
- package/dist/graphql/workItems.d.ts +34 -1
- package/dist/graphql/workItems.js +349 -2
- package/dist/graphql/workItems.js.map +1 -1
- package/dist/handlers.js +44 -0
- package/dist/handlers.js.map +1 -1
- package/dist/registry-manager.d.ts +1 -0
- package/dist/registry-manager.js +54 -0
- package/dist/registry-manager.js.map +1 -1
- package/dist/services/ConnectionManager.js +3 -3
- package/dist/services/ConnectionManager.js.map +1 -1
- package/dist/services/SchemaIntrospector.js +3 -3
- package/dist/services/SchemaIntrospector.js.map +1 -1
- package/dist/services/ToolAvailability.js +30 -1
- package/dist/services/ToolAvailability.js.map +1 -1
- package/dist/structured-world-gitlab-mcp-4.1.1.tgz +0 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/namespace.d.ts +6 -0
- package/dist/utils/namespace.js +52 -0
- package/dist/utils/namespace.js.map +1 -0
- package/package.json +5 -3
- 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
|
|
9
|
-
|
|
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
|
|
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
|
|
16
|
-
|
|
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('
|
|
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('
|
|
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
|
|
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('
|
|
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('
|
|
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
|
|
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
|
|
52
|
-
|
|
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
|
|
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
|
|
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('
|
|
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('
|
|
71
|
-
sort: zod_1.z
|
|
72
|
-
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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(
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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(
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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
|
|
210
|
-
min_access_level: zod_1.z
|
|
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":";;;AAAA,6BAAwB;AACxB,oCAA2C;AAC3C,sCAAyE;AAK5D,QAAA,oBAAoB,GAAG,4BAAmB,CAAC,MAAM,CAAC;IAC7D,IAAI,EAAE,OAAC,
|
|
1
|
+
{"version":3,"file":"schema-readonly.js","sourceRoot":"","sources":["../../../src/entities/mrs/schema-readonly.ts"],"names":[],"mappings":"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"}
|