create-issue
Create GitHub Enterprise issues directly with detailed specifications, including title, labels, assignees, and milestones, through the GitHub Enterprise MCP Server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Assignee list | |
body | No | Issue content | |
labels | No | Label list | |
milestone | No | Milestone ID | |
owner | Yes | Repository owner (user or organization) | |
repo | Yes | Repository name | |
title | Yes | Issue title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assignees": {
"description": "Assignee list",
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"description": "Issue content",
"type": "string"
},
"labels": {
"description": "Label list",
"items": {
"type": "string"
},
"type": "array"
},
"milestone": {
"description": "Milestone ID",
"type": "number"
},
"owner": {
"description": "Repository owner (user or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"title": {
"description": "Issue title",
"type": "string"
}
},
"required": [
"owner",
"repo",
"title"
],
"type": "object"
}