GitHub Projects MCP Server

add-draft-issue

Create and add draft issues to GitHub Projects, specifying title, body, and assignees directly within the project board for streamlined Agile project planning.

Instructions

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" }
ID: 86aw338aa5