[
{
"description": "Create a new issue in a GitHub repository.",
"inputSchema": {
"properties": {
"body": {
"description": "Issue body",
"type": "string"
},
"title": {
"description": "Issue title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"name": "mcp__github__create_issue"
},
{
"description": "Launch a new agent to handle complex, multi-step tasks.",
"inputSchema": {
"additionalProperties": false,
"properties": {
"description": {
"description": "A short (3-5 word) description of the task",
"type": "string"
},
"model": {
"description": "Optional model override for this agent.",
"enum": [
"opus",
"haiku",
"sonnet"
],
"type": "string"
},
"prompt": {
"description": "The task for the agent to perform",
"type": "string"
}
},
"required": [
"description",
"prompt"
],
"type": "object"
},
"name": "Agent"
}
]