GitHub Projects MCP Server

create-issue

Create a new GitHub issue

Input Schema

NameRequiredDescriptionDefault
assigneesNoUsernames to assign
bodyNoIssue body/description
labelsNoLabels to apply
milestoneNoMilestone ID
ownerYesRepository owner (username)
repoYesRepository name
titleYesIssue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "description": "Usernames to assign", "items": { "type": "string" }, "type": "array" }, "body": { "description": "Issue body/description", "type": "string" }, "labels": { "description": "Labels to apply", "items": { "type": "string" }, "type": "array" }, "milestone": { "description": "Milestone ID", "type": "number" }, "owner": { "description": "Repository owner (username)", "type": "string" }, "repo": { "description": "Repository name", "type": "string" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "owner", "repo", "title" ], "type": "object" }