Files
2025-06-25 08:12:38 +02:00

44 lines
1003 B
Plaintext

{
"annotations": {
"title": "List commits",
"readOnlyHint": true
},
"description": "Get list of commits of a branch in a GitHub repository",
"inputSchema": {
"properties": {
"author": {
"description": "Author username or email address",
"type": "string"
},
"owner": {
"description": "Repository owner",
"type": "string"
},
"page": {
"description": "Page number for pagination (min 1)",
"minimum": 1,
"type": "number"
},
"perPage": {
"description": "Results per page for pagination (min 1, max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"sha": {
"description": "SHA or Branch name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
},
"name": "list_commits"
}