gitea_create_repo
Create a new Gitea repository with a name, description, and privacy setting using the GitMCP server, enabling efficient project setup and management.
Instructions
Create a new repository on Gitea
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Repository description | |
name | Yes | Repository name | |
private | No | Private repository |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Repository description",
"type": "string"
},
"name": {
"description": "Repository name",
"type": "string"
},
"private": {
"default": true,
"description": "Private repository",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}