create_issue
Add issues to GitHub repositories by specifying owner, repo, title, and body through Multi-MCPs, a unified server integrating multiple third-party APIs for streamlined development workflows.
Instructions
Create an issue in a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | ||
owner | Yes | ||
repo | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"type": "string"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"title"
],
"type": "object"
}