@zereight/mcp-gitlab 1.0.67 → 1.0.68

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 (2) hide show
  1. package/build/schemas.js +8 -1
  2. package/package.json +1 -1
package/build/schemas.js CHANGED
@@ -809,7 +809,14 @@ export const UpdateMergeRequestSchema = GetMergeRequestSchema.extend({
809
809
  title: z.string().optional().describe("The title of the merge request"),
810
810
  description: z.string().optional().describe("The description of the merge request"),
811
811
  target_branch: z.string().optional().describe("The target branch"),
812
- assignee_ids: z.array(z.number()).optional().describe("The ID of the users to assign the MR to"),
812
+ assignee_ids: z
813
+ .array(z.number())
814
+ .optional()
815
+ .describe("The ID of the users to assign the MR to"),
816
+ reviewer_ids: z
817
+ .array(z.number())
818
+ .optional()
819
+ .describe("The ID of the users to assign as reviewers of the MR"),
813
820
  labels: z.array(z.string()).optional().describe("Labels for the MR"),
814
821
  state_event: z
815
822
  .enum(["close", "reopen"])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zereight/mcp-gitlab",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "zereight",