60aef5d2e3
Move from `mark3labs/mcp-go` to `modelcontextprotocol/go-sdk`. This is mostly focused on updating tool schema and tool handler signatures, along with any associated internal changes related to those changes. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: omgitsads <4619+omgitsads@users.noreply.github.com> Co-authored-by: LuluBeatson <lulubeatson@github.com> Co-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com> Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com> Co-authored-by: Sam Morrow <info@sam-morrow.com>
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
{
|
|
"annotations": {
|
|
"title": "Change sub-issue"
|
|
},
|
|
"description": "Add a sub-issue to a parent issue in a GitHub repository.",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"required": [
|
|
"method",
|
|
"owner",
|
|
"repo",
|
|
"issue_number",
|
|
"sub_issue_id"
|
|
],
|
|
"properties": {
|
|
"after_id": {
|
|
"type": "number",
|
|
"description": "The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified)"
|
|
},
|
|
"before_id": {
|
|
"type": "number",
|
|
"description": "The ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified)"
|
|
},
|
|
"issue_number": {
|
|
"type": "number",
|
|
"description": "The number of the parent issue"
|
|
},
|
|
"method": {
|
|
"type": "string",
|
|
"description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\n\t\t\t\t"
|
|
},
|
|
"owner": {
|
|
"type": "string",
|
|
"description": "Repository owner"
|
|
},
|
|
"replace_parent": {
|
|
"type": "boolean",
|
|
"description": "When true, replaces the sub-issue's current parent issue. Use with 'add' method only."
|
|
},
|
|
"repo": {
|
|
"type": "string",
|
|
"description": "Repository name"
|
|
},
|
|
"sub_issue_id": {
|
|
"type": "number",
|
|
"description": "The ID of the sub-issue to add. ID is not the same as issue number"
|
|
}
|
|
}
|
|
},
|
|
"name": "sub_issue_write"
|
|
} |