@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
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetProjectEventsSchema = exports.ListEventsSchema = exports.DownloadAttachmentSchema = exports.ListGroupIterationsSchema = exports.GetCommitDiffSchema = exports.GetCommitSchema = exports.ListCommitsSchema = exports.ListGroupProjectsSchema = exports.ListProjectMembersSchema = exports.ListProjectsSchema = exports.GetProjectSchema = exports.VerifyNamespaceSchema = exports.GetNamespaceSchema = exports.ListNamespacesSchema = exports.SearchRepositoriesSchema = exports.GetUsersSchema = exports.GitLabCompareResultSchema = exports.GitLabReferenceSchema = exports.GitLabSearchResponseSchema = void 0;
3
+ exports.GetProjectEventsSchema = exports.ListEventsSchema = exports.DownloadAttachmentSchema = exports.ListGroupIterationsSchema = exports.GetCommitDiffSchema = exports.GetCommitSchema = exports.ListCommitsSchema = exports.ListProjectMembersSchema = exports.ListProjectsSchema = exports.GetProjectSchema = exports.VerifyNamespaceSchema = exports.GetNamespaceSchema = exports.ListNamespacesSchema = exports.SearchRepositoriesSchema = exports.GetUsersSchema = exports.GitLabCompareResultSchema = exports.GitLabReferenceSchema = exports.GitLabSearchResponseSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const utils_1 = require("../utils");
6
6
  const shared_1 = require("../shared");
@@ -32,28 +32,53 @@ exports.GitLabCompareResultSchema = zod_1.z.object({
32
32
  });
33
33
  exports.GetUsersSchema = zod_1.z
34
34
  .object({
35
- username: zod_1.z.string().optional().describe('Get a single user by username'),
36
- public_email: zod_1.z.string().optional().describe('Get a single user with a specific public email'),
37
- search: zod_1.z.string().optional().describe('Search for users by name, username, or public email'),
38
- active: utils_1.flexibleBoolean.optional().describe('Filter only active users'),
39
- external: utils_1.flexibleBoolean.optional().describe('Filter only external users'),
40
- blocked: utils_1.flexibleBoolean.optional().describe('Filter only blocked users'),
35
+ username: zod_1.z
36
+ .string()
37
+ .optional()
38
+ .describe('Exact GitLab username to search for. Use when you know the exact username. Case-sensitive.'),
39
+ public_email: zod_1.z
40
+ .string()
41
+ .optional()
42
+ .describe('Find user by their public email address. Email must match exactly. Use when searching by email rather than username.'),
43
+ search: zod_1.z
44
+ .string()
45
+ .optional()
46
+ .describe('Partial text search across user name, username, and public email. Use for fuzzy searching when exact match is unknown.'),
47
+ active: utils_1.flexibleBoolean
48
+ .optional()
49
+ .describe('Filter for active users (true) or inactive users (false). Active users can log in and access resources.'),
50
+ external: utils_1.flexibleBoolean
51
+ .optional()
52
+ .describe('Filter for external users who have limited access. External users cannot see internal projects.'),
53
+ blocked: utils_1.flexibleBoolean
54
+ .optional()
55
+ .describe('Filter for blocked users who cannot log in or access any resources. Useful for security audits.'),
41
56
  humans: utils_1.flexibleBoolean
42
57
  .optional()
43
- .describe('Filter only regular users that are not bot or internal users'),
58
+ .describe('Filter for human users only, excluding bot accounts and internal system users. Use to get real team members.'),
44
59
  created_after: zod_1.z
45
60
  .string()
46
61
  .optional()
47
- .describe('Return users created after specified time (ISO 8601)'),
62
+ .describe('Filter users created after this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). Example: 2024-01-01T00:00:00Z'),
48
63
  created_before: zod_1.z
49
64
  .string()
50
65
  .optional()
51
- .describe('Return users created before specified time (ISO 8601)'),
52
- exclude_active: utils_1.flexibleBoolean.optional().describe('Filter only non-active users'),
53
- exclude_external: utils_1.flexibleBoolean.optional().describe('Filter only non-external users'),
54
- exclude_humans: utils_1.flexibleBoolean.optional().describe('Filter only bot or internal users'),
55
- exclude_internal: utils_1.flexibleBoolean.optional().describe('Filter only non-internal users'),
56
- without_project_bots: utils_1.flexibleBoolean.optional().describe('Filter users without project bots'),
66
+ .describe('Filter users created before this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). Example: 2024-12-31T23:59:59Z'),
67
+ exclude_active: utils_1.flexibleBoolean
68
+ .optional()
69
+ .describe('Exclude active users from results, showing only inactive/deactivated users.'),
70
+ exclude_external: utils_1.flexibleBoolean
71
+ .optional()
72
+ .describe('Exclude external users, showing only internal users with full access rights.'),
73
+ exclude_humans: utils_1.flexibleBoolean
74
+ .optional()
75
+ .describe('Exclude human users, showing only bot accounts and internal system users.'),
76
+ exclude_internal: utils_1.flexibleBoolean
77
+ .optional()
78
+ .describe('Exclude internal system users, showing only regular users and bot accounts.'),
79
+ without_project_bots: utils_1.flexibleBoolean
80
+ .optional()
81
+ .describe('Exclude project bot users that are automatically created for project integrations.'),
57
82
  })
58
83
  .merge(shared_1.PaginationOptionsSchema);
59
84
  exports.SearchRepositoriesSchema = zod_1.z
@@ -61,12 +86,15 @@ exports.SearchRepositoriesSchema = zod_1.z
61
86
  q: zod_1.z
62
87
  .string()
63
88
  .min(1)
64
- .describe("Search query. Can include operators like 'language:javascript' or 'user:username'"),
89
+ .describe('Search query for projects. Supports advanced operators: language:javascript (filter by language), user:username (filter by owner), topic:devops (filter by topic). Combine multiple operators with spaces.'),
65
90
  sort: zod_1.z
66
91
  .enum(['updated', 'created', 'pushed', 'full_name'])
67
92
  .optional()
68
- .describe('Sort repositories by this field'),
69
- order: zod_1.z.enum(['asc', 'desc']).optional().describe('Sort order'),
93
+ .describe('Sort order for search results. Updated: recently modified, created: creation date, pushed: recent commits, full_name: alphabetical by path.'),
94
+ order: zod_1.z
95
+ .enum(['asc', 'desc'])
96
+ .optional()
97
+ .describe('Sort direction: asc for ascending (oldest/A-Z first), desc for descending (newest/Z-A first).'),
70
98
  })
71
99
  .merge(shared_1.PaginationOptionsSchema);
72
100
  exports.ListNamespacesSchema = zod_1.z
@@ -74,11 +102,20 @@ exports.ListNamespacesSchema = zod_1.z
74
102
  search: zod_1.z
75
103
  .string()
76
104
  .optional()
77
- .describe('Returns a list of namespaces the user is authorized to see based on the search criteria'),
78
- owned_only: utils_1.flexibleBoolean.optional().describe('Filter to only owned namespaces'),
79
- top_level_only: utils_1.flexibleBoolean.optional().describe('Include only top level namespaces'),
80
- with_statistics: utils_1.flexibleBoolean.optional().describe('Include namespace statistics'),
81
- min_access_level: zod_1.z.number().optional().describe('Limit by current user minimal access level'),
105
+ .describe('Search namespaces (groups and user namespaces) by name or path. Returns partial matches. Use to find groups when exact path unknown.'),
106
+ owned_only: utils_1.flexibleBoolean
107
+ .optional()
108
+ .describe('Show only namespaces where current user is owner. Useful for finding your own groups/projects.'),
109
+ top_level_only: utils_1.flexibleBoolean
110
+ .optional()
111
+ .describe('Show only root-level namespaces, excluding subgroups. Use to find main organizational groups.'),
112
+ with_statistics: utils_1.flexibleBoolean
113
+ .optional()
114
+ .describe('Include storage usage, repository count, and other statistics. May slow response for large result sets.'),
115
+ min_access_level: zod_1.z
116
+ .number()
117
+ .optional()
118
+ .describe('Minimum access level required. 10=Guest, 20=Reporter, 30=Developer, 40=Maintainer, 50=Owner.'),
82
119
  })
83
120
  .merge(shared_1.PaginationOptionsSchema);
84
121
  exports.GetNamespaceSchema = zod_1.z.object({
@@ -87,33 +124,40 @@ exports.GetNamespaceSchema = zod_1.z.object({
87
124
  .refine((val) => val && val !== 'undefined' && val !== 'null', {
88
125
  message: 'namespace_id is required and cannot be empty',
89
126
  })
90
- .describe('ID or URL-encoded path of the namespace'),
127
+ .describe('Namespace identifier: numeric ID or URL-encoded path (e.g., "gitlab-org" or "gitlab-org%2Fgitlab"). Required field.'),
91
128
  });
92
129
  exports.VerifyNamespaceSchema = zod_1.z.object({
93
- namespace: zod_1.z.string().describe('A potential namespace name or path'),
130
+ namespace: zod_1.z
131
+ .string()
132
+ .describe('Namespace path to verify existence and access. Can be group path (gitlab-org) or full project path (gitlab-org/gitlab).'),
94
133
  });
95
134
  exports.GetProjectSchema = zod_1.z.object({
96
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
97
- statistics: utils_1.flexibleBoolean.optional().describe('Include project statistics'),
98
- license: utils_1.flexibleBoolean.optional().describe('Include project license data'),
135
+ project_id: zod_1.z.coerce
136
+ .string()
137
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
138
+ statistics: utils_1.flexibleBoolean
139
+ .optional()
140
+ .describe('Include repository size, commit count, storage usage, and other metrics. Adds processing overhead.'),
141
+ license: utils_1.flexibleBoolean
142
+ .optional()
143
+ .describe('Include detected license information from LICENSE file. Shows license type and permissions.'),
99
144
  with_custom_attributes: utils_1.flexibleBoolean
100
145
  .optional()
101
- .describe('Include custom attributes in response'),
146
+ .describe('Include user-defined custom attributes. Requires admin access. Used for custom metadata.'),
102
147
  });
103
148
  exports.ListProjectsSchema = zod_1.z
104
149
  .object({
105
- archived: utils_1.flexibleBoolean.optional().describe('Limit by archived status'),
106
- active: utils_1.flexibleBoolean
150
+ group_id: zod_1.z.coerce
151
+ .string()
107
152
  .optional()
108
- .default(true)
109
- .describe('Limit by projects that are not archived and not marked for deletion'),
110
- imported: utils_1.flexibleBoolean
153
+ .describe('Group identifier: numeric ID or URL-encoded path (e.g., "28" or "gitlab-org" or "mngmnt%2Fapps"). If provided, lists projects within this group. If omitted, lists YOUR accessible projects across all GitLab.'),
154
+ archived: utils_1.flexibleBoolean
111
155
  .optional()
112
- .describe('Limit results to projects imported from external systems by current user'),
156
+ .describe('Filter by archive status. true=archived projects only, false=active projects only, omit=both.'),
113
157
  visibility: zod_1.z
114
158
  .enum(['public', 'internal', 'private'])
115
159
  .optional()
116
- .describe('Limit by visibility'),
160
+ .describe('Filter by visibility level. public=anyone can see, internal=logged-in users, private=members only.'),
117
161
  order_by: zod_1.z
118
162
  .enum([
119
163
  'id',
@@ -130,163 +174,208 @@ exports.ListProjectsSchema = zod_1.z
130
174
  ])
131
175
  .optional()
132
176
  .default('created_at')
133
- .describe('Return projects ordered by field'),
177
+ .describe('Sort field for results. Options: id, name, path, created_at, updated_at, last_activity_at (recent activity), similarity (search relevance), size metrics.'),
134
178
  sort: zod_1.z
135
179
  .enum(['asc', 'desc'])
136
180
  .optional()
137
181
  .default('desc')
138
- .describe('Return projects sorted in asc or desc order'),
139
- search: zod_1.z.string().optional().describe('Return list of projects matching the search criteria'),
140
- search_namespaces: utils_1.flexibleBoolean
182
+ .describe('Sort direction: asc=ascending (oldest/smallest/A-Z first), desc=descending (newest/largest/Z-A first). Default: desc.'),
183
+ search: zod_1.z
184
+ .string()
141
185
  .optional()
142
- .describe('Include ancestor namespaces when matching search criteria'),
186
+ .describe('Search projects by name or description. Partial matches supported. Case-insensitive.'),
143
187
  simple: utils_1.flexibleBoolean
144
188
  .optional()
145
189
  .default(true)
146
- .describe('Return only limited fields for each project'),
190
+ .describe('Return minimal project info for faster response. true=basic fields only, false=full details. Default: true.'),
147
191
  owned: utils_1.flexibleBoolean
148
192
  .optional()
149
- .describe('Limit by projects explicitly owned by the current user'),
150
- membership: utils_1.flexibleBoolean
193
+ .describe('Show only projects where you are the owner, not just a member. Useful for finding your personal projects.'),
194
+ starred: utils_1.flexibleBoolean
151
195
  .optional()
152
- .describe('Limit by projects that the current user is a member of'),
153
- starred: utils_1.flexibleBoolean.optional().describe('Limit by projects starred by the current user'),
154
- statistics: utils_1.flexibleBoolean.optional().describe('Include project statistics'),
196
+ .describe("Show only projects you've starred (favorited). Useful for finding frequently used projects."),
197
+ min_access_level: zod_1.z
198
+ .number()
199
+ .optional()
200
+ .describe('Minimum access level required. 10=Guest, 20=Reporter, 30=Developer, 40=Maintainer, 50=Owner.'),
155
201
  with_custom_attributes: utils_1.flexibleBoolean
156
202
  .optional()
157
- .describe('Include custom attributes in response'),
158
- with_issues_enabled: utils_1.flexibleBoolean.optional().describe('Limit by enabled issues feature'),
159
- with_merge_requests_enabled: utils_1.flexibleBoolean
203
+ .describe('Include user-defined custom attributes. Requires admin access. Used for custom metadata.'),
204
+ active: utils_1.flexibleBoolean
160
205
  .optional()
161
- .describe('Limit by enabled merge requests feature'),
206
+ .describe('Filter for active projects (true) or archived projects (false). Active projects are not archived and can be actively developed. USER SCOPE ONLY: Not valid with group_id.'),
207
+ imported: utils_1.flexibleBoolean
208
+ .optional()
209
+ .describe('Show only projects you imported from GitHub, Bitbucket, or other external systems. USER SCOPE ONLY: Not valid with group_id.'),
210
+ membership: utils_1.flexibleBoolean
211
+ .optional()
212
+ .describe("Show only projects where you have membership (any access level). Excludes public projects you can see but aren't member of. USER SCOPE ONLY: Not valid with group_id."),
213
+ statistics: utils_1.flexibleBoolean
214
+ .optional()
215
+ .describe('Include repository size, commit count, storage usage, and other metrics. Adds processing overhead. USER SCOPE ONLY: Not valid with group_id.'),
162
216
  with_programming_language: zod_1.z
163
217
  .string()
164
218
  .optional()
165
- .describe('Limit by projects which use the given programming language'),
219
+ .describe('Filter projects by primary programming language (e.g., "JavaScript", "Python", "Go"). Case-sensitive. USER SCOPE ONLY: Not valid with group_id.'),
166
220
  wiki_checksum_failed: utils_1.flexibleBoolean
167
221
  .optional()
168
- .describe('Limit projects where the wiki checksum calculation has failed'),
222
+ .describe('Find projects with wiki integrity issues. Used for maintenance and troubleshooting. USER SCOPE ONLY: Not valid with group_id.'),
169
223
  repository_checksum_failed: utils_1.flexibleBoolean
170
224
  .optional()
171
- .describe('Limit projects where the repository checksum calculation has failed'),
172
- min_access_level: zod_1.z.number().optional().describe('Limit by current user minimal access level'),
225
+ .describe('Find projects with repository integrity issues. Used for maintenance and troubleshooting. USER SCOPE ONLY: Not valid with group_id.'),
173
226
  id_after: zod_1.z
174
227
  .number()
175
228
  .optional()
176
- .describe('Limit results to projects with IDs greater than the specified ID'),
229
+ .describe('Pagination cursor: show projects with ID > specified value. Used for efficient pagination. USER SCOPE ONLY: Not valid with group_id.'),
177
230
  id_before: zod_1.z
178
231
  .number()
179
232
  .optional()
180
- .describe('Limit results to projects with IDs less than the specified ID'),
233
+ .describe('Pagination cursor: show projects with ID < specified value. Used for reverse pagination. USER SCOPE ONLY: Not valid with group_id.'),
181
234
  last_activity_after: zod_1.z
182
235
  .string()
183
236
  .optional()
184
- .describe('Limit results to projects with last_activity after specified time (ISO 8601)'),
237
+ .describe('Show projects with recent activity after this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). USER SCOPE ONLY: Not valid with group_id.'),
185
238
  last_activity_before: zod_1.z
186
239
  .string()
187
240
  .optional()
188
- .describe('Limit results to projects with last_activity before specified time (ISO 8601)'),
241
+ .describe('Show projects with last activity before this date/time. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). USER SCOPE ONLY: Not valid with group_id.'),
189
242
  marked_for_deletion_on: zod_1.z
190
243
  .string()
191
244
  .optional()
192
- .describe('Filter by date when project was marked for deletion (YYYY-MM-DD format, Premium/Ultimate only)'),
245
+ .describe('Show projects scheduled for deletion on specific date. Format: YYYY-MM-DD. Requires GitLab Premium/Ultimate. USER SCOPE ONLY: Not valid with group_id.'),
193
246
  repository_storage: zod_1.z
194
247
  .string()
195
248
  .optional()
196
- .describe('Limit results to projects stored on repository_storage'),
249
+ .describe('Filter by storage shard name (for multi-shard GitLab installations). Admin use only. USER SCOPE ONLY: Not valid with group_id.'),
250
+ include_subgroups: utils_1.flexibleBoolean
251
+ .optional()
252
+ .describe('Include projects from child groups/subgroups. Use to search entire group hierarchy. GROUP SCOPE ONLY: Requires group_id.'),
253
+ with_shared: utils_1.flexibleBoolean
254
+ .optional()
255
+ .describe('Include projects shared with this group from other groups. Shows collaborative projects. GROUP SCOPE ONLY: Requires group_id.'),
256
+ with_security_reports: utils_1.flexibleBoolean
257
+ .optional()
258
+ .describe('Filter projects with security scanning results (SAST, DAST, dependency scanning). Premium/Ultimate feature. GROUP SCOPE ONLY: Requires group_id.'),
259
+ topic: zod_1.z
260
+ .string()
261
+ .optional()
262
+ .describe('Return projects matching a topic. Use to find projects with specific tags or themes. GROUP SCOPE ONLY: Requires group_id.'),
263
+ with_issues_enabled: utils_1.flexibleBoolean
264
+ .optional()
265
+ .describe('Show only projects with issues/tickets feature enabled. Use to find projects accepting bug reports. GROUP SCOPE ONLY: Requires group_id.'),
266
+ with_merge_requests_enabled: utils_1.flexibleBoolean
267
+ .optional()
268
+ .describe('Show only projects accepting merge requests. Use to find projects open to contributions. GROUP SCOPE ONLY: Requires group_id.'),
197
269
  })
198
270
  .merge(shared_1.PaginationOptionsSchema);
199
271
  exports.ListProjectMembersSchema = zod_1.z
200
272
  .object({
201
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
202
- query: zod_1.z.string().optional().describe('A query string to search for members'),
203
- user_ids: zod_1.z.array(zod_1.z.number()).optional().describe('Filter the results on the given user IDs'),
273
+ project_id: zod_1.z.coerce
274
+ .string()
275
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
276
+ query: zod_1.z
277
+ .string()
278
+ .optional()
279
+ .describe('Search project members by name or username. Partial matches supported.'),
280
+ user_ids: zod_1.z
281
+ .array(zod_1.z.number())
282
+ .optional()
283
+ .describe('Filter to specific user IDs. Pass array of numeric user IDs to get specific members.'),
204
284
  })
205
285
  .merge(shared_1.PaginationOptionsSchema);
206
- exports.ListGroupProjectsSchema = zod_1.z
286
+ exports.ListCommitsSchema = zod_1.z
207
287
  .object({
208
- group_id: zod_1.z.coerce.string().describe('The ID or URL-encoded path of the group'),
209
- archived: utils_1.flexibleBoolean.optional().describe('Limit by archived status'),
210
- visibility: zod_1.z
211
- .enum(['public', 'internal', 'private'])
212
- .optional()
213
- .describe('Limit by visibility'),
214
- order_by: zod_1.z
215
- .enum(['id', 'name', 'path', 'created_at', 'updated_at', 'last_activity_at'])
288
+ project_id: zod_1.z.coerce
289
+ .string()
290
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
291
+ ref_name: zod_1.z
292
+ .string()
216
293
  .optional()
217
- .describe('Return projects ordered by field'),
218
- sort: zod_1.z
219
- .enum(['asc', 'desc'])
294
+ .describe('Branch or tag name to get commits from. Defaults to default branch if omitted.'),
295
+ since: zod_1.z
296
+ .string()
220
297
  .optional()
221
- .describe('Return projects sorted in asc or desc order'),
222
- search: zod_1.z.string().optional().describe('Return list of projects matching the search criteria'),
223
- simple: utils_1.flexibleBoolean.optional().describe('Return only limited fields for each project'),
224
- owned: utils_1.flexibleBoolean
298
+ .describe('Start date for commit history. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). Example: 2024-01-01T00:00:00Z'),
299
+ until: zod_1.z
300
+ .string()
225
301
  .optional()
226
- .describe('Limit by projects explicitly owned by the current user'),
227
- starred: utils_1.flexibleBoolean.optional().describe('Limit by projects starred by the current user'),
228
- with_issues_enabled: utils_1.flexibleBoolean.optional().describe('Limit by enabled issues feature'),
229
- with_merge_requests_enabled: utils_1.flexibleBoolean
302
+ .describe('End date for commit history. Format: YYYY-MM-DDTHH:mm:ssZ (ISO 8601). Example: 2024-12-31T23:59:59Z'),
303
+ path: zod_1.z
304
+ .string()
230
305
  .optional()
231
- .describe('Limit by enabled merge requests feature'),
232
- with_shared: utils_1.flexibleBoolean.optional().describe('Include projects shared to this group'),
233
- include_subgroups: utils_1.flexibleBoolean.optional().describe('Include projects in subgroups'),
234
- min_access_level: zod_1.z.number().optional().describe('Limit by current user minimal access level'),
235
- with_custom_attributes: utils_1.flexibleBoolean
306
+ .describe('Filter commits affecting this file or directory path. Use to see history of specific files.'),
307
+ author: zod_1.z
308
+ .string()
236
309
  .optional()
237
- .describe('Include custom attributes in response'),
238
- with_security_reports: utils_1.flexibleBoolean
310
+ .describe('Filter commits by author name or email. Partial matches supported.'),
311
+ all: utils_1.flexibleBoolean
239
312
  .optional()
240
- .describe('Only return projects that have security reports artifacts'),
241
- })
242
- .merge(shared_1.PaginationOptionsSchema);
243
- exports.ListCommitsSchema = zod_1.z
244
- .object({
245
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
246
- ref_name: zod_1.z.string().optional().describe('The name of a repository branch or tag'),
247
- since: zod_1.z.string().optional().describe('Only commits after or on this date (ISO 8601)'),
248
- until: zod_1.z.string().optional().describe('Only commits before or on this date (ISO 8601)'),
249
- path: zod_1.z.string().optional().describe('The file path'),
250
- author: zod_1.z.string().optional().describe('Search commits by author name'),
251
- all: utils_1.flexibleBoolean.optional().describe('Retrieve every commit from the repository'),
313
+ .describe('Include commits from all branches, not just the specified ref. Shows complete project history.'),
252
314
  with_stats: utils_1.flexibleBoolean
253
315
  .optional()
254
- .describe('Stats about each commit will be added to the response'),
316
+ .describe('Include additions/deletions count and changed files list for each commit. Adds processing overhead.'),
255
317
  first_parent: utils_1.flexibleBoolean
256
318
  .optional()
257
- .describe('Follow only the first parent commit upon seeing a merge commit'),
258
- order: zod_1.z.enum(['default', 'topo']).optional().describe('List commits in order'),
259
- trailers: utils_1.flexibleBoolean.optional().describe('Parse and include Git trailers for each commit'),
319
+ .describe('Simplify merge history by following only first parent. Useful for linear history view.'),
320
+ order: zod_1.z
321
+ .enum(['default', 'topo'])
322
+ .optional()
323
+ .describe('Commit ordering: default=chronological, topo=topological (respects branch structure).'),
324
+ trailers: utils_1.flexibleBoolean
325
+ .optional()
326
+ .describe('Include Git trailers (Signed-off-by, Co-authored-by, etc.) parsed from commit messages.'),
260
327
  })
261
328
  .merge(shared_1.PaginationOptionsSchema);
262
329
  exports.GetCommitSchema = zod_1.z.object({
263
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
264
- commit_sha: zod_1.z.string().describe('The commit hash or name of a repository branch or tag'),
265
- stats: utils_1.flexibleBoolean.optional().describe('Include commit stats'),
330
+ project_id: zod_1.z.coerce
331
+ .string()
332
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
333
+ commit_sha: zod_1.z
334
+ .string()
335
+ .describe('Commit SHA hash (40 chars), short hash (7+ chars), or branch/tag name. Example: abc123def or main.'),
336
+ stats: utils_1.flexibleBoolean
337
+ .optional()
338
+ .describe('Include file changes statistics: additions, deletions, total changes per file.'),
266
339
  });
267
340
  exports.GetCommitDiffSchema = zod_1.z.object({
268
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
269
- commit_sha: zod_1.z.string().describe('The commit hash or name of a repository branch or tag'),
270
- unidiff: utils_1.flexibleBoolean.optional().describe('Diff files returned in raw unified diff format'),
341
+ project_id: zod_1.z.coerce
342
+ .string()
343
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
344
+ commit_sha: zod_1.z
345
+ .string()
346
+ .describe('Commit SHA hash (40 chars), short hash (7+ chars), or branch/tag name. Example: abc123def or main.'),
347
+ unidiff: utils_1.flexibleBoolean
348
+ .optional()
349
+ .describe('Return diff in unified format (like git diff output). Useful for patch generation.'),
271
350
  });
272
351
  exports.ListGroupIterationsSchema = zod_1.z
273
352
  .object({
274
- group_id: zod_1.z.coerce.string().describe('The ID or URL-encoded path of the group'),
353
+ group_id: zod_1.z.coerce
354
+ .string()
355
+ .describe('Group identifier: numeric ID or URL-encoded path (e.g., "gitlab-org" or "gitlab-org%2Fsubgroup").'),
275
356
  state: zod_1.z
276
357
  .enum(['opened', 'upcoming', 'current', 'closed', 'all'])
277
358
  .optional()
278
- .describe('Return iterations with a specific state'),
359
+ .describe('Filter iterations by state: opened=active, upcoming=future, current=in progress, closed=completed, all=everything.'),
279
360
  search: zod_1.z
280
361
  .string()
281
362
  .optional()
282
- .describe('Return iterations with a title matching the provided string'),
283
- include_ancestors: utils_1.flexibleBoolean.optional().describe('Include iterations from parent groups'),
363
+ .describe('Search iterations by title. Partial text matches supported. Case-insensitive.'),
364
+ include_ancestors: utils_1.flexibleBoolean
365
+ .optional()
366
+ .describe('Include iterations from parent/ancestor groups in hierarchy. Shows inherited iterations.'),
284
367
  })
285
368
  .merge(shared_1.PaginationOptionsSchema);
286
369
  exports.DownloadAttachmentSchema = zod_1.z.object({
287
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
288
- secret: zod_1.z.string().describe('The secret token of the uploaded file'),
289
- filename: zod_1.z.string().describe('The filename of the uploaded file'),
370
+ project_id: zod_1.z.coerce
371
+ .string()
372
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
373
+ secret: zod_1.z
374
+ .string()
375
+ .describe('Security token from the uploaded file URL. Found in GitLab attachment URLs after /uploads/.'),
376
+ filename: zod_1.z
377
+ .string()
378
+ .describe('Original filename of the attachment. Must match the uploaded filename exactly.'),
290
379
  });
291
380
  exports.ListEventsSchema = zod_1.z
292
381
  .object({
@@ -305,28 +394,30 @@ exports.ListEventsSchema = zod_1.z
305
394
  'expired',
306
395
  ])
307
396
  .optional()
308
- .describe('Include only events of a particular action type'),
397
+ .describe('Filter by event action: created/updated/closed/reopened (issues/MRs), pushed (commits), commented (notes), merged (MRs), joined/left (members), destroyed/expired (misc).'),
309
398
  target_type: zod_1.z
310
399
  .enum(['issue', 'milestone', 'merge_request', 'note', 'project', 'snippet', 'user'])
311
400
  .optional()
312
- .describe('Include only events of a particular target type'),
401
+ .describe('Filter by what the event affected: issue, milestone, merge_request, note (comment), project, snippet, user.'),
313
402
  before: zod_1.z
314
403
  .string()
315
404
  .optional()
316
- .describe('Include only events created before a particular date (YYYY-MM-DD)'),
405
+ .describe('Show events before this date. Format: YYYY-MM-DD. Example: 2024-12-31 for events before end of 2024.'),
317
406
  after: zod_1.z
318
407
  .string()
319
408
  .optional()
320
- .describe('Include only events created after a particular date (YYYY-MM-DD)'),
409
+ .describe('Show events after this date. Format: YYYY-MM-DD. Example: 2024-01-01 for events from 2024 onwards.'),
321
410
  sort: zod_1.z
322
411
  .enum(['asc', 'desc'])
323
412
  .optional()
324
- .describe('Sort events in asc or desc order by created_at'),
413
+ .describe('Sort order for events: asc=oldest first (chronological), desc=newest first (reverse chronological).'),
325
414
  })
326
415
  .merge(shared_1.PaginationOptionsSchema);
327
416
  exports.GetProjectEventsSchema = zod_1.z
328
417
  .object({
329
- project_id: zod_1.z.coerce.string().describe('Project ID or URL-encoded path'),
418
+ project_id: zod_1.z.coerce
419
+ .string()
420
+ .describe('Project identifier: numeric ID or URL-encoded path (e.g., "42" or "gitlab-org%2Fgitlab"). Path separator "/" must be encoded as %2F.'),
330
421
  action: zod_1.z
331
422
  .enum([
332
423
  'created',
@@ -342,23 +433,23 @@ exports.GetProjectEventsSchema = zod_1.z
342
433
  'expired',
343
434
  ])
344
435
  .optional()
345
- .describe('Include only events of a particular action type'),
436
+ .describe('Filter by event action: created/updated/closed/reopened (issues/MRs), pushed (commits), commented (notes), merged (MRs), joined/left (members), destroyed/expired (misc).'),
346
437
  target_type: zod_1.z
347
438
  .enum(['issue', 'milestone', 'merge_request', 'note', 'project', 'snippet', 'user'])
348
439
  .optional()
349
- .describe('Include only events of a particular target type'),
440
+ .describe('Filter by what the event affected: issue, milestone, merge_request, note (comment), project, snippet, user.'),
350
441
  before: zod_1.z
351
442
  .string()
352
443
  .optional()
353
- .describe('Include only events created before a particular date (YYYY-MM-DD)'),
444
+ .describe('Show events before this date. Format: YYYY-MM-DD. Example: 2024-12-31 for events before end of 2024.'),
354
445
  after: zod_1.z
355
446
  .string()
356
447
  .optional()
357
- .describe('Include only events created after a particular date (YYYY-MM-DD)'),
448
+ .describe('Show events after this date. Format: YYYY-MM-DD. Example: 2024-01-01 for events from 2024 onwards.'),
358
449
  sort: zod_1.z
359
450
  .enum(['asc', 'desc'])
360
451
  .optional()
361
- .describe('Sort events in asc or desc order by created_at'),
452
+ .describe('Sort order for events: asc=oldest first (chronological), desc=newest first (reverse chronological).'),
362
453
  })
363
454
  .merge(shared_1.PaginationOptionsSchema);
364
455
  //# sourceMappingURL=schema-readonly.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema-readonly.js","sourceRoot":"","sources":["../../../src/entities/core/schema-readonly.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema-readonly.js","sourceRoot":"","sources":["../../../src/entities/core/schema-readonly.ts"],"names":[],"mappings":"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"}