GitHub MCP Server Plus

list_commits

Retrieve a list of commits from a specific branch in a GitHub repository using this tool. Input repository owner, name, branch SHA, and pagination details to fetch commit history efficiently.

Instructions

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" }
ID: qmvm4mx87p