GitHub Projects MCP Server

convert-draft-issue

Convert a draft issue to a regular issue

Input Schema

NameRequiredDescriptionDefault
bodyNoBody for the new issue
draftIssueIdYesDraft issue ID to convert
projectIdYesGitHub Project ID
repositoryIdYesRepository ID where to create the issue
titleNoTitle for the new issue

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "Body for the new issue", "type": "string" }, "draftIssueId": { "description": "Draft issue ID to convert", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "repositoryId": { "description": "Repository ID where to create the issue", "type": "string" }, "title": { "description": "Title for the new issue", "type": "string" } }, "required": [ "projectId", "draftIssueId", "repositoryId" ], "type": "object" }