gitlab mcp

fork_repository

Fork a GitLab project to your account or specified namespace

Input Schema

NameRequiredDescriptionDefault
namespaceNoNamespace to fork to (full path)
project_idYesProject ID or URL-encoded path

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "namespace": { "description": "Namespace to fork to (full path)", "type": "string" }, "project_id": { "description": "Project ID or URL-encoded path", "type": "string" } }, "required": [ "project_id" ], "type": "object" }