GitHub Enterprise MCP 服务器
用于与 GitHub Enterprise API 集成的 MCP(模型上下文协议)服务器。该服务器提供 MCP 接口,方便用户在 Cursor 中轻松访问 GitHub Enterprise 的仓库信息、问题、PR 等。
兼容性
该项目主要针对 GitHub Enterprise Server 环境设计,但也适用于:
GitHub.com
GitHub 企业云
注意:某些企业特定功能(如许可证信息和企业统计信息)不适用于 GitHub.com 或 GitHub Enterprise Cloud。
Related MCP server: GitHub MCP Server Plus
主要特点
从 GitHub Enterprise 实例检索存储库列表
获取详细的存储库信息
列出存储库分支
查看文件和目录内容
管理问题和拉取请求
存储库管理(创建、更新、删除)
GitHub Actions 工作流管理
用户管理(列出、创建、更新、删除、暂停/取消暂停用户)
访问企业统计数据
增强的错误处理和用户友好的响应格式
入门
先决条件
Node.js 18 或更高版本
访问 GitHub Enterprise 实例
个人访问令牌(PAT)
Docker 安装和设置
选项 1:使用 Docker 运行
构建 Docker 镜像:
docker build -t github-enterprise-mcp .使用环境变量运行 Docker 容器:
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
注意:Dockerfile 默认配置为使用
--transport http运行。如果需要更改此设置,可以覆盖以下命令:
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选项 2:使用 Docker Compose
在项目根目录中创建一个包含所需环境变量的
.env文件:GITHUB_ENTERPRISE_URL=https://github.your-company.com/api/v3 GITHUB_TOKEN=your_github_token DEBUG=true使用 Docker Compose 启动容器:
docker-compose up -d检查日志:
docker-compose logs -f停止容器:
docker-compose down
安装和设置
本地开发(使用并发模式)
对于具有自动重新编译和服务器重启功能的主动开发,建议使用此方法:
克隆存储库并安装所需的包:
git clone https://github.com/ddukbg/github-enterprise-mcp.git cd github-enterprise-mcp npm install运行开发服务器:
export GITHUB_TOKEN="your_github_token" export GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" npm run dev这将:
文件更改时自动编译 TypeScript 代码
编译文件更新后重新启动服务器
以 HTTP 模式运行服务器以进行基于 URL 的连接
使用 URL 模式连接到 Cursor,如下所述
生产的安装和设置
选项 1:使用 URL 模式(推荐用于本地开发)
此方法最稳定,推荐用于本地开发或测试:
克隆存储库并安装所需的包:
git clone https://github.com/ddukbg/github-enterprise-mcp.git cd github-enterprise-mcp npm install构建项目:
npm run build chmod +x dist/index.js运行服务器:
export GITHUB_TOKEN="your_github_token" export GITHUB_ENTERPRISE_URL="https://github.your-company.com/api/v3" node dist/index.js --transport http --debug使用URL方式连接Cursor:
将以下内容添加到 Cursor 的
.cursor/mcp.json文件中:
{ "mcpServers": { "github-enterprise": { "url": "http://localhost:3000/sse" } } }
选项 2:作为全局命令安装(npm 链接)
此方法对于本地开发很有用:
# 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选项 3:使用 npx(包发布时)
如果该包已发布到公共 npm 注册表:
npx @ddukbg/github-enterprise-mcp --token=your_github_token --github-enterprise-url=https://github.your-company.com/api/v3与AI工具集成
克劳德桌面
将以下内容添加到您的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"]
}
}
}用您的实际值替换YOUR_GITHUB_TOKEN和YOUR_GITHUB_ENTERPRISE_URL 。
光标
推荐:URL模式(最稳定)
为了在 Cursor 中最可靠的操作,建议使用 URL 模式:
在单独的终端窗口中启动服务器:
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 http配置 Cursor 的 MCP 设置:
打开 Cursor 并转到**“设置”**
导航至AI > MCP 服务器
编辑你的
.cursor/mcp.json文件:
{ "mcpServers": { "github-enterprise": { "url": "http://localhost:3000/sse" } } }重新启动 Cursor 以应用更改
替代方案:命令模式
或者,您可以将 Cursor 配置为使用命令模式,尽管 URL 模式更可靠:
打开 Cursor 并转到**“设置”**
导航至AI > MCP 服务器
点击**“添加 MCP 服务器”**
输入以下详细信息:
名称:GitHub Enterprise
命令:
npx参数:
@ddukbg/github-enterprise-mcp环境变量:
GITHUB_ENTERPRISE_URL:您的 GitHub Enterprise API URLGITHUB_TOKEN:您的 GitHub 个人访问令牌
或者,您可以手动编辑.cursor/mcp.json文件以包含:
{
"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"
}
}
}
}语言配置
此 MCP 服务器支持英语和韩语。您可以使用以下方式配置语言:
环境变量
# Set language to Korean
export LANGUAGE=ko
# Or in .env file
LANGUAGE=ko命令行参数
# Set language to Korean
node dist/index.js --language ko如果未指定,默认语言为英语。
HTTP 模式中的附加选项
--debug:启用调试日志记录--github-enterprise-url <URL>:设置 GitHub Enterprise API URL--token <TOKEN>:设置 GitHub 个人访问令牌--language <LANG>:设置语言(en 或 ko,默认值:en)
可用的 MCP 工具
该 MCP 服务器提供以下工具:
工具名称 | 描述 | 参数 | 所需的 PAT 权限 |
| 检索用户或组织的存储库列表 |
|
|
| 获取详细的存储库信息 |
|
|
| 列出存储库的分支 |
|
|
| 检索文件或目录内容 |
|
|
| 列出存储库中的拉取请求 |
|
|
| 获取拉取请求详细信息 |
|
|
| 创建新的拉取请求 |
|
|
| 合并拉取请求 |
|
|
| 列出存储库中的问题 |
|
|
| 获取问题详细信息 |
|
|
| 列出对问题或拉取请求的评论 |
|
|
| 创建新问题 |
|
|
| 创建新的存储库 |
|
|
| 更新存储库设置 |
|
|
| 删除存储库 |
|
|
| 列出 GitHub Actions 工作流程 |
|
|
| 列出工作流程运行 |
|
|
| 触发工作流 |
|
|
| 获取 GitHub Enterprise 许可证信息 | - | 需要 site_admin(管理员)帐户 |
| 获取 GitHub Enterprise 系统统计信息 | - | 需要 site_admin(管理员)帐户 |
注意:对于企业专用工具(
get-license-info和get-enterprise-stats),需要具有站点管理员权限的用户。建议使用经典个人访问令牌 (Classic Personal Access Token),因为细粒度令牌可能不支持这些企业级权限。
使用 Cursor 中的工具
设置好 MCP 服务器并配置 Cursor 连接到该服务器后,您就可以直接在 Cursor 的 AI 聊天中使用 GitHub Enterprise 工具。以下是一些示例:
列出存储库
mcp_github_enterprise_list_repositories(owner="octocat")获取存储库信息
mcp_github_enterprise_get_repository(owner="octocat", repo="hello-world")列出拉取请求
mcp_github_enterprise_list_pull_requests(owner="octocat", repo="hello-world", state="open")管理问题
# 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"]
)使用存储库内容
mcp_github_enterprise_get_content(owner="octocat", repo="hello-world", path="README.md")存储库管理
# 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
)用户管理(仅限企业)
这些功能专为 GitHub Enterprise Server 环境设计,需要管理权限:
# 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 改进
灵活的 API URL 配置(支持各种环境变量和命令行参数)
增强错误处理和超时管理
用户友好的响应格式和消息
贡献
欢迎贡献代码!欢迎提交 Pull 请求。
执照
国际学习中心
Maintenance
Appeared in Searches
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ddukbg/github-enterprise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
