GitHub Enterprise MCP Server provides a bridge between AI assistants and GitHub Enterprise API, enabling repository management, issue tracking, and code access through natural language. The implementation supports both GitHub Enterprise Server and GitHub.com, with special features for enterprise environments like license information and admin statistics. Built with TypeScript and the Model Context Protocol SDK, it offers tools for managing repositories, branches, pull requests, issues, and GitHub Actions workflows through either stdio or HTTP transport. Particularly valuable for developers who need to interact with GitHub repositories without leaving their AI assistant interface.
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation
Retrieve repository list for a user or organization. Parameters: owner (string), isOrg (boolean), type (string), sort (string), page (number), perPage (number)
Get detailed repository information. Parameters: owner (string), repo (string)
List branches of a repository. Parameters: owner (string), repo (string), protected_only (boolean), page (number), perPage (number)
Retrieve file or directory contents. Parameters: owner (string), repo (string), path (string), ref (optional string)
List pull requests in a repository. Parameters: owner (string), repo (string), state (string), sort (string), direction (string), page (number), per_page (number)
Get pull request details. Parameters: owner (string), repo (string), pull_number (number)
Create a new pull request. Parameters: owner (string), repo (string), title (string), head (string), base (string), body (string), draft (boolean)
Merge a pull request. Parameters: owner (string), repo (string), pull_number (number), merge_method (string), commit_title (string), commit_message (string)
List issues in a repository. Parameters: owner (string), repo (string), state (string), sort (string), direction (string), page (number), per_page (number)
Get issue details. Parameters: owner (string), repo (string), issue_number (number)
List comments on an issue or pull request. Parameters: owner (string), repo (string), issue_number (number), page (number), per_page (number)
Create a new issue. Parameters: owner (string), repo (string), title (string), body (string), labels (array of strings), assignees (array of strings), milestone (number)
Create a new repository. Parameters: name (string), description (string), private (boolean), auto_init (boolean), gitignore_template (string), license_template (string), org (string)
Update repository settings. Parameters: owner (string), repo (string), description (string), private (boolean), default_branch (string), has_issues (boolean), has_projects (boolean), has_wiki (boolean), archived (boolean)
Delete a repository. Parameters: owner (string), repo (string), confirm (boolean)
List GitHub Actions workflows. Parameters: owner (string), repo (string), page (number), perPage (number)
List workflow runs. Parameters: owner (string), repo (string), workflow_id (string), branch (string), status (string), page (number), perPage (number)
Trigger a workflow. Parameters: owner (string), repo (string), workflow_id (string), ref (string), inputs (object)
Get GitHub Enterprise license information. No parameters required.
Get GitHub Enterprise system statistics. No parameters required.