GitHub MCP Server Plus

list_commits

Get list of commits of a branch in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
ownerYes
pageNo
perPageNo
repoYes
shaNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "type": "string" }, "page": { "type": "number" }, "perPage": { "type": "number" }, "repo": { "type": "string" }, "sha": { "type": "string" } }, "required": [ "owner", "repo" ], "type": "object" }