create_repository
Create a new GitLab project with customizable name, description, visibility settings, and optional README initialization for version control management.
Instructions
Create a new GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Repository name | |
| description | No | Repository description | |
| visibility | No | Repository visibility level | |
| initialize_with_readme | No | Initialize with README.md |
Input Schema (JSON Schema)
{
"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"
}