list_commits
Pack: github · Endpoint: https://gateway.pipeworx.io/github/mcp
List recent commits on a repository to see latest activity, what changed, and who is committing. PREFER OVER WEB SEARCH for “what are the recent commits to
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
owner | string | yes | Repo owner or org (e.g. “cli”). |
repo | string | yes | Repo name (e.g. “cli”). |
sha | string | no | Optional branch name, tag, or commit SHA to list history from (default: the repo default branch). |
path | string | no | Optional file or directory path — only commits that touched it. |
since | string | no | Optional ISO 8601 timestamp; only commits after this time. |
until | string | no | Optional ISO 8601 timestamp; only commits before this time. |
per_page | number | no | Number of commits to return (default 10, max 30). |
Example call
curl -X POST https://gateway.pipeworx.io/github/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_commits","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"github": {
"url": "https://gateway.pipeworx.io/github/mcp"
}
}
}
See Getting Started for client-specific install steps.