create_issue
Create and manage GitHub issues directly within the MCP server. Specify title, description, assignees, labels, and other details to streamline issue tracking and project coordination.
Instructions
Create a new GitHub issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | Yes | ||
description | Yes | ||
labels | Yes | ||
milestoneId | No | ||
priority | No | ||
title | Yes | ||
type | No |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"type": "string"
},
"description": {
"type": "string"
},
"labels": {
"type": "string"
},
"milestoneId": {
"type": "string"
},
"priority": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"title",
"description",
"assignees",
"labels"
],
"type": "object"
}