GitHub Projects MCP Server

add-draft-issue

Add a draft issue to a GitHub Project

Input Schema

NameRequiredDescriptionDefault
assigneeIdsNoIDs of users to assign
bodyNoDraft issue body
projectIdYesGitHub Project ID
titleYesDraft issue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assigneeIds": { "description": "IDs of users to assign", "items": { "type": "string" }, "type": "array" }, "body": { "description": "Draft issue body", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "title": { "description": "Draft issue title", "type": "string" } }, "required": [ "projectId", "title" ], "type": "object" }