remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Integrations
Provides access to GitHub Enterprise and GitHub.com repositories, enabling repository management, branch listing, file content retrieval, and issue/PR handling through the GitHub API.
Offers tools for listing, viewing, and triggering GitHub Actions workflows, with capabilities for managing workflow runs and filtering by branch or status.
GitHub Enterprise MCP Server
An MCP (Model Context Protocol) server for integration with GitHub Enterprise API. This server provides an MCP interface to easily access repository information, issues, PRs, and more from GitHub Enterprise in Cursor.
Compatibility
This project is primarily designed for GitHub Enterprise Server environments, but it also works with:
- GitHub.com
- GitHub Enterprise Cloud
Note: Some enterprise-specific features (like license information and enterprise statistics) will not work with GitHub.com or GitHub Enterprise Cloud.
Key Features
- Retrieve repository list from GitHub Enterprise instances
- Get detailed repository information
- List repository branches
- View file and directory contents
- Manage issues and pull requests
- Repository management (create, update, delete)
- GitHub Actions workflows management
- User management (list, create, update, delete, suspend/unsuspend users)
- Access enterprise statistics
- Enhanced error handling and user-friendly response formatting
Getting Started
Prerequisites
- Node.js 18 or higher
- Access to a GitHub Enterprise instance
- Personal Access Token (PAT)
Docker Installation and Setup
Option 1: Running with Docker
- Build the Docker image:
- Run the Docker container with environment variables:
Note: The Dockerfile is configured to run with
--transport http
by default. If you need to change this, you can override the command:
Option 2: Using Docker Compose
- Create a
.env
file in the project root with the required environment variables:
- Start the container with Docker Compose:
- Check the logs:
- Stop the container:
Installation and Setup
Local Development (Using Concurrent Mode)
This method is recommended for active development with automatic recompilation and server restarts:
- Clone the repository and install required packages:
- Run the development server:
This will:
- Compile TypeScript code automatically when files change
- Restart the server when compiled files are updated
- Run the server in HTTP mode for URL-based connections
- Connect to Cursor using URL mode as described below
Installation and Setup for Production
Option 1: Using URL Mode (Recommended for Local Development)
This method is the most stable and recommended for local development or testing:
- Clone the repository and install required packages:
- Build the project:
- Run the server:
- Connect to Cursor using URL mode:
- Add the following to your Cursor's
.cursor/mcp.json
file:
Copy - Add the following to your Cursor's
Option 2: Install as a Global Command (npm link)
This method is useful for local development:
Option 3: Using npx (When Package is Published)
If the package is published to the public npm registry:
Integration with AI Tools
Claude Desktop
Add the following to your claude_desktop_config.json
:
Replace YOUR_GITHUB_TOKEN
and YOUR_GITHUB_ENTERPRISE_URL
with your actual values.
Cursor
Recommended: URL Mode (Most Stable)
For the most reliable operation in Cursor, using URL mode is recommended:
- Start the server in a separate terminal window:Copy
- Configure Cursor's MCP settings:
- Open Cursor and go to Settings
- Navigate to AI > MCP Servers
- Edit your
.cursor/mcp.json
file:
Copy - Restart Cursor to apply the changes
Alternative: Command Mode
Alternatively, you can configure Cursor to use the command mode, although URL mode is more reliable:
- Open Cursor and go to Settings
- Navigate to AI > MCP Servers
- Click Add MCP Server
- Enter the following details:
- Name: GitHub Enterprise
- Command:
npx
- Arguments:
@ddukbg/github-enterprise-mcp
- Environment Variables:
GITHUB_ENTERPRISE_URL
: Your GitHub Enterprise API URLGITHUB_TOKEN
: Your GitHub personal access token
Alternatively, you can manually edit your .cursor/mcp.json
file to include:
Additional Options in HTTP Mode
--debug
: Enable debug logging--github-enterprise-url <URL>
: Set GitHub Enterprise API URL--token <TOKEN>
: Set GitHub Personal Access Token
Available MCP Tools
This MCP server provides the following tools:
Tool Name | Description | Parameters | Required PAT Permissions |
---|---|---|---|
list-repositories | Retrieve repository list for a user or organization | owner : Username/org nameisOrg : Whether it's an organizationtype : Repository typesort : Sort criteriapage : Page numberperPage : Items per page | repo |
get-repository | Get detailed repository information | owner : Repository ownerrepo : Repository name | repo |
list-branches | List branches of a repository | owner : Repository ownerrepo : Repository nameprotected_only : Whether to show only protected branchespage : Page numberperPage : Items per page | repo |
get-content | Retrieve file or directory contents | owner : Repository ownerrepo : Repository namepath : File/directory pathref : Branch/commit (optional) | repo |
list-pull-requests | List pull requests in a repository | owner : Repository ownerrepo : Repository namestate : PR state filtersort : Sort criteriadirection : Sort directionpage : Page numberper_page : Items per page | repo |
get-pull-request | Get pull request details | owner : Repository ownerrepo : Repository namepull_number : Pull request number | repo |
create-pull-request | Create a new pull request | owner : Repository ownerrepo : Repository nametitle : PR titlehead : Head branchbase : Base branchbody : PR descriptiondraft : Create as draft PR | repo |
merge-pull-request | Merge a pull request | owner : Repository ownerrepo : Repository namepull_number : Pull request numbermerge_method : Merge methodcommit_title : Commit titlecommit_message : Commit message | repo |
list-issues | List issues in a repository | owner : Repository ownerrepo : Repository namestate : Issue state filtersort : Sort criteriadirection : Sort directionpage : Page numberper_page : Items per page | repo |
get-issue | Get issue details | owner : Repository ownerrepo : Repository nameissue_number : Issue number | repo |
create-issue | Create a new issue | owner : Repository ownerrepo : Repository nametitle : Issue titlebody : Issue body contentlabels : Array of label namesassignees : Array of user loginsmilestone : Milestone ID | repo |
create-repository | Create a new repository | name : Repository namedescription : Repository descriptionprivate : Whether privateauto_init : Initialize with READMEgitignore_template : Add .gitignorelicense_template : Add licenseorg : Organization name | repo |
update-repository | Update repository settings | owner : Repository ownerrepo : Repository namedescription : New descriptionprivate : Change privacydefault_branch : Change default branchhas_issues : Enable/disable issueshas_projects : Enable/disable projectshas_wiki : Enable/disable wikiarchived : Archive/unarchive | repo |
delete-repository | Delete a repository | owner : Repository ownerrepo : Repository nameconfirm : Confirmation (must be true) | delete_repo |
list-workflows | List GitHub Actions workflows | owner : Repository ownerrepo : Repository namepage : Page numberperPage : Items per page | actions:read |
list-workflow-runs | List workflow runs | owner : Repository ownerrepo : Repository nameworkflow_id : Workflow ID/filenamebranch : Filter by branchstatus : Filter by statuspage : Page numberperPage : Items per page | actions:read |
trigger-workflow | Trigger a workflow | owner : Repository ownerrepo : Repository nameworkflow_id : Workflow ID/filenameref : Git referenceinputs : Workflow inputs | actions:write |
get-license-info | Get GitHub Enterprise license information | - | Requires site_admin (Administrator) account |
get-enterprise-stats | Get GitHub Enterprise system statistics | - | Requires site_admin (Administrator) account |
Note: For Enterprise-specific tools (
get-license-info
andget-enterprise-stats
), a user with site administrator privileges is required. A Classic Personal Access Token is recommended, as Fine-grained tokens may not support these Enterprise-level permissions.
Using the Tools in Cursor
Once you have set up the MCP server and configured Cursor to connect to it, you can use the GitHub Enterprise tools directly in Cursor's AI chat. Here are some examples:
Listing Repositories
Getting Repository Information
Listing Pull Requests
Managing Issues
Working with Repository Content
Repository Management
User Management (Enterprise Only)
These features are specifically designed for GitHub Enterprise Server environments and require administrative permissions:
API Improvements
- Flexible API URL configuration (supports various environment variables and command-line arguments)
- Enhanced error handling and timeout management
- User-friendly response formatting and messages
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
ISC
You must be authenticated.
Tools
An MCP server that enables integration with GitHub Enterprise API, allowing users to access repository information, manage issues, pull requests, workflows, and other GitHub features through Cursor.