GitLab MCP Server

create_repository

Create a new GitLab project

Input Schema

NameRequiredDescriptionDefault
descriptionNoRepository description
initialize_with_readmeNoInitialize with README.md
nameYesRepository name
visibilityNoRepository visibility level

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Repository description", "type": "string" }, "initialize_with_readme": { "description": "Initialize with README.md", "type": "boolean" }, "name": { "description": "Repository name", "type": "string" }, "visibility": { "description": "Repository visibility level", "enum": [ "private", "internal", "public" ], "type": "string" } }, "required": [ "name" ], "type": "object" }