GitHub MCP Server

create_issue

Create a new issue in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
assigneesNoArray of usernames to assign
bodyNoIssue body/description
labelsNoArray of label names
milestoneNoMilestone number to assign
ownerYesRepository owner (username or organization)
repoYesRepository name
titleYesIssue title

Input Schema (JSON Schema)

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