GitHub Projects MCP Server

create-project

Create a new GitHub Project

Input Schema

NameRequiredDescriptionDefault
descriptionNoProject description
ownerIdYesOwner ID (user or organization)
repositoryIdNoRepository ID to link the project to
titleYesProject title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Project description", "type": "string" }, "ownerId": { "description": "Owner ID (user or organization)", "type": "string" }, "repositoryId": { "description": "Repository ID to link the project to", "type": "string" }, "title": { "description": "Project title", "type": "string" } }, "required": [ "ownerId", "title" ], "type": "object" }