create_repository
Set up a new GitHub repository with customizable options like name, description, privacy settings, and README initialization using the GitHub MCP Server Plus.
Instructions
Create a new GitHub repository in your account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoInit | No | Initialize with README.md | |
description | No | Repository description | |
name | Yes | Repository name | |
private | No | Whether the repository should be private |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"autoInit": {
"description": "Initialize with README.md",
"type": "boolean"
},
"description": {
"description": "Repository description",
"type": "string"
},
"name": {
"description": "Repository name",
"type": "string"
},
"private": {
"description": "Whether the repository should be private",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}