GitLab MCP Server

create_repository

Create a new GitLab project with custom name, description, visibility level, and optional README file initialization using the GitLab MCP Server tool.

Instructions

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" }

You must be authenticated.

Other Tools from GitLab MCP Server

Related Tools

ID: mim928vohs