Integrate GitHub Enterprise API
MCP server exposing GitHub Enterprise repos, PRs, issues, workflows, and admin-only user/license tools to AI assistants.
Maintainer of this project? Claim this page to edit the listing.
1.3.0Add to Favorites
Why it matters
Connect to your GitHub Enterprise instance to programmatically access and manage repositories, issues, pull requests, workflows, and user data.
Outcomes
What it gets done
Retrieve repository and branch information
Manage issues and pull requests
Create, update, and delete repositories
Access GitHub Actions workflows and user management
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-github-enterprise-mcp | bash Capabilities
Tools your agent gets
Get a list of repositories for a user or organization
Get detailed information about a repository
List repository branches
Get the contents of a file or directory
List pull requests in a repository
Get pull request details
Create a new pull request
Merge a pull request
Overview
GitHub Enterprise MCP Server
An MCP server exposing GitHub Enterprise's repository, PR, issue, Actions, and admin-only license/user-management tools to AI assistants like Cursor and Claude Desktop. Use when an AI assistant needs to read or manage GitHub Enterprise Server repositories, PRs, issues, workflows, or (for admins) enterprise license and user data.
What it does
This is an MCP (Model Context Protocol) server for integration with the GitHub Enterprise API, providing an MCP interface to access repository information, issues, PRs, and more from GitHub Enterprise in Cursor. It is primarily designed for GitHub Enterprise Server environments but also works with GitHub.com and GitHub Enterprise Cloud, though enterprise-specific features (license information, enterprise statistics, user management) don't work on those non-Server variants. Key features include retrieving repository lists, detailed repository info, branch listings, file/directory contents, issue and pull request management, repository management (create/update/delete), GitHub Actions workflow management, user management (list/create/update/delete/suspend/unsuspend), enterprise statistics access, and enhanced error handling with user-friendly response formatting.
When to use - and when NOT to
Use this connector when an AI assistant needs to read or manage repositories, issues, PRs, or workflows on a GitHub Enterprise Server instance. Enterprise-only tools (get-license-info, get-enterprise-stats, and the user-management tools) require a site-administrator account and won't work against plain GitHub.com or GitHub Enterprise Cloud; a Classic Personal Access Token is recommended for these since Fine-grained tokens may not support Enterprise-level permissions.
Capabilities
The server exposes tools across several areas: repository access (list-repositories, get-repository, list-branches, get-content), pull requests (list-pull-requests, get-pull-request, create-pull-request, merge-pull-request), issues (list-issues, get-issue, list-issue-comments, create-issue), repository management (create-repository, update-repository, delete-repository, the last requiring delete_repo PAT scope), GitHub Actions (list-workflows, list-workflow-runs, trigger-workflow, all requiring actions:read/actions:write), and Enterprise-only administration (get-license-info, get-enterprise-stats, plus user management via list-users/get-user/create-user/update-user/suspend-user/unsuspend-user/list-user-orgs). Most tools require the repo PAT permission. The server supports both English and Korean output, set via LANGUAGE=ko or --language ko (English is the default).
How to install
Requires Node.js 18+, access to a GitHub Enterprise instance, and a Personal Access Token. Via Docker:
docker build -t github-enterprise-mcp .
docker run -p 3000:3000 \
-e GITHUB_TOKEN="your_github_token" \
-e GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" \
-e DEBUG=true \
github-enterprise-mcp
(the Dockerfile runs --transport http by default; override the command to change this). Docker Compose is also supported via a .env file plus docker-compose up -d. For local development, clone the repo, npm install, and run npm run dev for auto-recompiling HTTP mode. For production, either build (npm run build, chmod +x dist/index.js) and run node dist/index.js --transport http --debug in URL mode, install globally with npm link, or run via npx @ddukbg/github-enterprise-mcp once published. HTTP-mode flags include --debug, --github-enterprise-url, --token, and --language. For Claude Desktop, add an npx-based entry to claude_desktop_config.json with --token=/--github-enterprise-url= arguments. For Cursor, the recommended URL mode runs the server separately and points .cursor/mcp.json at http://localhost:3000/sse; an alternative command mode configures npx @ddukbg/github-enterprise-mcp directly with GITHUB_ENTERPRISE_URL/GITHUB_TOKEN environment variables. This server is ISC-licensed.
Who it's for
Teams running GitHub Enterprise Server who want AI assistants in Cursor or Claude Desktop to read and manage repositories, PRs, issues, and Actions workflows directly, including administrators who need enterprise license/statistics visibility and user-management capabilities not available on GitHub.com.
Source README
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:
docker build -t github-enterprise-mcp .Run the Docker container with environment variables:
docker run -p 3000:3000 \ -e GITHUB_TOKEN="your_github_token" \ -e GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" \ -e DEBUG=true \ github-enterprise-mcp
Note: The Dockerfile is configured to run with
--transport httpby default. If you need to change this, you can override the command:
docker run -p 3000:3000 \
-e GITHUB_TOKEN="your_github_token" \
-e GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" \
-e DEBUG=true \
github-enterprise-mcp node dist/index.js --transport http --debug
Option 2: Using Docker Compose
Create a
.envfile in the project root with the required environment variables:GITHUB_ENTERPRISE_URL=https://github.your-company.com/api/v3 GITHUB_TOKEN=your_github_token DEBUG=trueStart the container with Docker Compose:
docker-compose up -dCheck the logs:
docker-compose logs -fStop the container:
docker-compose down
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:
git clone https://github.com/ddukbg/github-enterprise-mcp.git cd github-enterprise-mcp npm installRun the development server:
export GITHUB_TOKEN="your_github_token" export GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" npm run devThis 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:
git clone https://github.com/ddukbg/github-enterprise-mcp.git cd github-enterprise-mcp npm installBuild the project:
npm run build chmod +x dist/index.jsRun the server:
export GITHUB_TOKEN="your_github_token" export GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" node dist/index.js --transport http --debugConnect to Cursor using URL mode:
- Add the following to your Cursor's
.cursor/mcp.jsonfile:
{ "mcpServers": { "github-enterprise": { "url": "http://localhost:3000/sse" } } }- Add the following to your Cursor's
Option 2: Install as a Global Command (npm link)
This method is useful for local development:
# After cloning the repository
git clone https://github.com/ddukbg/github-enterprise-mcp.git
cd github-enterprise-mcp
# Install required packages
npm install
# Build
npm run build
chmod +x dist/index.js
# Link globally
npm link
# Run as a global command
export GITHUB_TOKEN="your_github_token"
export GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3"
github-enterprise-mcp --transport=http --debug
Option 3: Using npx (When Package is Published)
If the package is published to the public npm registry:
npx @ddukbg/github-enterprise-mcp --token=your_github_token --github-enterprise-url=https://github.your-company.com/api/v3
Integration with AI Tools
Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"github-enterprise": {
"command": "npx",
"args": ["-y", "@ddukbg/github-enterprise-mcp", "--token=YOUR_GITHUB_TOKEN", "--github-enterprise-url=YOUR_GITHUB_ENTERPRISE_URL"]
}
}
}
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:
cd /path/to/github-enterprise-mcp GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" GITHUB_TOKEN="your_github_token" node dist/index.js --transport httpConfigure Cursor's MCP settings:
- Open Cursor and go to Settings
- Navigate to AI > MCP Servers
- Edit your
.cursor/mcp.jsonfile:
{ "mcpServers": { "github-enterprise": { "url": "http://localhost:3000/sse" } } }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:
{
"mcpServers": {
"github-enterprise": {
"command": "npx",
"args": [
"@ddukbg/github-enterprise-mcp"
],
"env": {
"GITHUB_ENTERPRISE_URL": "https://github.your-company.com/api/v3",
"GITHUB_TOKEN": "your_github_token"
}
}
}
}
Language Configuration
This MCP server supports both English and Korean languages. You can configure the language using:
Environment Variables
# Set language to Korean
export LANGUAGE=ko
# Or in .env file
LANGUAGE=ko
Command-line Arguments
# Set language to Korean
node dist/index.js --language ko
The default language is English if not specified.
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--language <LANG>: Set language (en or ko, default: en)
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 |
list-issue-comments |
List comments on an issue or pull request | owner: Repository ownerrepo: Repository nameissue_number: Issue/PR numberpage: Page numberper_page: Items per page |
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-infoandget-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
mcp_github_enterprise_list_repositories(owner="octocat")
Getting Repository Information
mcp_github_enterprise_get_repository(owner="octocat", repo="hello-world")
Listing Pull Requests
mcp_github_enterprise_list_pull_requests(owner="octocat", repo="hello-world", state="open")
Managing Issues
# List issues
mcp_github_enterprise_list_issues(owner="octocat", repo="hello-world", state="all")
# Get issue details
mcp_github_enterprise_get_issue(owner="octocat", repo="hello-world", issue_number=1)
# Get issue/PR comments
mcp_github_enterprise_list_issue_comments(owner="octocat", repo="hello-world", issue_number=1)
# Create a new issue
mcp_github_enterprise_create_issue(
owner="octocat",
repo="hello-world",
title="Found a bug",
body="Here is a description of the bug",
labels=["bug", "important"]
)
Working with Repository Content
mcp_github_enterprise_get_content(owner="octocat", repo="hello-world", path="README.md")
Repository Management
# Create a new repository
mcp_github_enterprise_create_repository(
name="new-project",
description="This is a new project",
private=true,
auto_init=true
)
# Update repository settings
mcp_github_enterprise_update_repository(
owner="octocat",
repo="hello-world",
description="Updated description",
has_issues=true
)
User Management (Enterprise Only)
These features are specifically designed for GitHub Enterprise Server environments and require administrative permissions:
# List all users in the GitHub Enterprise instance
mcp_github_enterprise_list_users(filter="active", per_page=100)
# Get a specific user's details
mcp_github_enterprise_get_user(username="octocat")
# Create a new user (Enterprise only)
mcp_github_enterprise_create_user(
login="newuser",
email="newuser@example.com",
name="New User",
company="ACME Inc."
)
# Update a user's information (Enterprise only)
mcp_github_enterprise_update_user(
username="octocat",
email="updated-email@example.com",
location="San Francisco"
)
# Suspend a user (Enterprise only)
mcp_github_enterprise_suspend_user(
username="octocat",
reason="Violation of terms of service"
)
# Unsuspend a user (Enterprise only)
mcp_github_enterprise_unsuspend_user(username="octocat")
# List organizations a user belongs to
mcp_github_enterprise_list_user_orgs(username="octocat")
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
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.
