annator / mcps /grok_com_github /tools /get_code_scanning_alert.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
592 Bytes
{
"name": "get_code_scanning_alert",
"description": "Get details of a specific code scanning alert in a GitHub repository.",
"inputSchema": {
"type": "object",
"properties": {
"alertNumber": {
"type": "number",
"description": "The number of the alert."
},
"owner": {
"type": "string",
"description": "The owner of the repository."
},
"repo": {
"type": "string",
"description": "The name of the repository."
}
},
"required": [
"owner",
"repo",
"alertNumber"
]
}
}