The GitHub MCP Server provides a comprehensive interface for interacting with the GitHub API, offering features such as automatic branch creation, comprehensive error handling, and Git history preservation. It supports both single and batch file operations, advanced search capabilities for code, issues, pull requests, and users, and tools for creating or updating files, repositories, and issues. This project is particularly useful for developers and teams who need to streamline their GitHub workflow, automate repository management tasks, and maintain efficient version control. By simplifying complex operations and ensuring proper Git history management, it enhances productivity and reduces the risk of errors during repository interactions.
Create or update a single file in a repository. Parameters: owner (string), repo (string), path (string), content (string), message (string), branch (string), sha (optional string)
Push multiple files in a single commit. Parameters: owner (string), repo (string), branch (string), files (array), message (string)
Search for GitHub repositories. Parameters: query (string), page (optional number), perPage (optional number)
Create a new GitHub repository. Parameters: name (string), description (optional string), private (optional boolean), autoInit (optional boolean)
Get contents of a file or directory. Parameters: owner (string), repo (string), path (string), branch (optional string)
Create a new issue. Parameters: owner (string), repo (string), title (string), body (optional string), assignees (optional string[]), labels (optional string[]), milestone (optional number)
Create a new pull request. Parameters: owner (string), repo (string), title (string), body (optional string), head (string), base (string), draft (optional boolean), maintainer_can_modify (optional boolean)
Fork a repository. Parameters: owner (string), repo (string), organization (optional string)
Create a new branch. Parameters: owner (string), repo (string), branch (string), from_branch (optional string)
List and filter repository issues. Parameters: owner (string), repo (string), state (optional string), labels (optional string[]), sort (optional string), direction (optional string), since (optional string), page (optional number), per_page (optional number)
Update an existing issue. Parameters: owner (string), repo (string), issue_number (number), title (optional string), body (optional string), state (optional string), labels (optional string[]), assignees (optional string[]), milestone (optional number)
Add a comment to an issue. Parameters: owner (string), repo (string), issue_number (number), body (string)
Search for code across GitHub repositories. Parameters: q (string), sort (optional string), order (optional string), per_page (optional number), page (optional number)
Search for issues and pull requests. Parameters: q (string), sort (optional string), order (optional string), per_page (optional number), page (optional number)
Search for GitHub users. Parameters: q (string), sort (optional string), order (optional string), per_page (optional number), page (optional number)
Gets commits of a branch in a repository. Parameters: owner (string), repo (string), page (optional string), per_page (optional string), sha (optional string)
Gets the contents of an issue within a repository. Parameters: owner (string), repo (string), issue_number (number)
Get details of a specific pull request. Parameters: owner (string), repo (string), pull_number (number)
List and filter repository pull requests. Parameters: owner (string), repo (string), state (optional string), head (optional string), base (optional string), sort (optional string), direction (optional string), per_page (optional number), page (optional number)
Create a review on a pull request. Parameters: owner (string), repo (string), pull_number (number), body (string), event (string), commit_id (optional string), comments (optional array)
Merge a pull request. Parameters: owner (string), repo (string), pull_number (number), commit_title (optional string), commit_message (optional string), merge_method (optional string)
Get the list of files changed in a pull request. Parameters: owner (string), repo (string), pull_number (number)
Get the combined status of all status checks for a pull request. Parameters: owner (string), repo (string), pull_number (number)
Update a pull request branch with the latest changes from the base branch. Parameters: owner (string), repo (string), pull_number (number), expected_head_sha (optional string)
Get the review comments on a pull request. Parameters: owner (string), repo (string), pull_number (number)
Get the reviews on a pull request. Parameters: owner (string), repo (string), pull_number (number)
No reviews yet. Be the first to review!
Sign in to join the conversation
After downloading, you can run the MCP server in any client or IDE:
node path/to/downloaded/file.mjs