The Gitee MCP Server is a specialized implementation of the Model Context Protocol (MCP) designed to interact with Gitee's API. It enables AI assistants to manage repositories, issues, pull requests, and more, streamlining development workflows.
The Gitee MCP Server is a toolset that bridges AI assistants and Gitee's platform, allowing for seamless automation of repository management tasks. It supports personal, organizational, and enterprise-level operations, making it versatile for various use cases.
shell
git clone https://gitee.com/oschina/mcp-gitee.git
cd mcp-gitee
shell
make build
go install
go install gitee.com/oschina/mcp-gitee@latest
Check the installed version:
mcp-gitee --version
Example configuration for Cursor and Windsurf:
{
"mcpServers": {
"gitee": {
"command": "mcp-gitee",
"env": {
"GITEE_API_BASE": "https://gitee.com/api/v5",
"GITEE_ACCESS_TOKEN": "<your personal access token>"
}
}
}
}
-token
: Gitee access token.-api-base
: Gitee API base URL (default: https://gitee.com/api/v5
).-version
: Display version information.-transport
: Transport type (stdio
or sse
, default: stdio
).-sse-address
: Host and port for SSE server (default: localhost:8000
).GITEE_ACCESS_TOKEN
: Gitee access token.GITEE_API_BASE
: Gitee API base URL.Tool | Category | Description |
---|---|---|
list_user_repos | Repository | List user-authorized repositories. |
get_file_content | Repository | Retrieve file content from a repository. |
create_user_repo | Repository | Create a user repository. |
create_org_repo | Repository | Create an organization repository. |
create_enter_repo | Repository | Create an enterprise repository. |
create_release | Repository | Create a release for a repository. |
list_releases | Repository | List repository releases. |
list_repo_pulls | Pull Request | List pull requests in a repository. |
merge_pull | Pull Request | Merge a pull request. |
create_pull | Pull Request | Create a pull request. |
update_pull | Pull Request | Update a pull request. |
get_pull_detail | Pull Request | Get details of a pull request. |
comment_pull | Pull Request | Comment on a pull request. |
list_pull_comments | Pull Request | List all comments for a pull request. |
create_issue | Issue | Create an issue. |
update_issue | Issue | Update an issue. |
get_repo_issue_detail | Issue | Get details of a repository issue. |
list_repo_issues | Issue | List repository issues. |
comment_issue | Issue | Comment on an issue. |
list_issue_comments | Issue | List comments on an issue. |
get_user_info | User | Get current authenticated user information. |
list_user_notifications | Notification | List user notifications. |
We welcome contributions! To contribute:
For more details, refer to the CONTRIBUTING file.
This project is licensed under the MIT License. See the LICENSE file for details.