{ "annotations": { "title": "Create repository" }, "description": "Create a new GitHub repository in your account or specified organization", "inputSchema": { "type": "object", "required": [ "name" ], "properties": { "autoInit": { "type": "boolean", "description": "Initialize with README" }, "description": { "type": "string", "description": "Repository description" }, "name": { "type": "string", "description": "Repository name" }, "organization": { "type": "string", "description": "Organization to create the repository in (omit to create in your personal account)" }, "private": { "type": "boolean", "description": "Whether repo should be private" } } }, "name": "create_repository" }