github.fetch_files
Retrieve files and changes from a GitHub pull request to facilitate detailed reviews, static analysis, and test execution in the Code Review MCP server.
Instructions
Fetch files/diff for a PR
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
pull_number | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner": {
"type": "string"
},
"pull_number": {
"type": "number"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"pull_number"
],
"type": "object"
}