github-manager MCP Server

create_repo

Create a new repository in an organization

Input Schema

NameRequiredDescriptionDefault
descriptionNoRepository description
nameYesRepository name
orgYesOrganization name
privateNoWhether the repository should be private

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Repository description", "type": "string" }, "name": { "description": "Repository name", "type": "string" }, "org": { "description": "Organization name", "type": "string" }, "private": { "description": "Whether the repository should be private", "type": "boolean" } }, "required": [ "org", "name" ], "type": "object" }