github_create_repo
Easily create a new GitHub repository with customizable options like name, privacy settings, and description. Simplify repository management quickly on the GitMCP server.
Instructions
Create a new repository on GitHub
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"
}