GitHub MCP Server Plus

create_repository

Create a new GitHub repository in your account

Input Schema

NameRequiredDescriptionDefault
autoInitNoInitialize with README.md
descriptionNoRepository description
nameYesRepository name
privateNoWhether 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" }