Description
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.
Installation
git clone https://github.com/ddukbg/github-enterprise-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"github-enterprise": {
"command": "node",
"args": [
"path/to/server.js"
]
}
}
}