create-issue
Generate a new issue in a GitHub repository by specifying the owner, repo, title, body, and optional labels. Simplify issue creation within the GitHub MCP Server's workflow.
Instructions
Create a new issue in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Issue body | |
labels | No | Labels to apply to the issue | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name | |
title | Yes | Issue title |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Issue body",
"type": "string"
},
"labels": {
"description": "Labels to apply to the issue",
"items": {
"type": "string"
},
"type": "array"
},
"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",
"body"
],
"type": "object"
}