create_repository
Initialize a new GitLab project with customizable settings like name, description, visibility, and README file. Streamline project creation on the enhanced GitLab MCP Server with activity tracking and group projects.
Instructions
Create a new GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
initialize_with_readme | No | ||
name | No | ||
visibility | No | private |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"initialize_with_readme": {
"default": true,
"type": "boolean"
},
"name": {
"type": "string"
},
"visibility": {
"default": "private",
"enum": [
"private",
"internal",
"public"
],
"type": "string"
}
},
"type": "object"
}