AgentHubAgentHub

Gitee

MCP ServerMCP Hub 中国

io.mcp-cn.gitee/mcp-gitee · vlatest

Gitee的MCP服务器,支持代码仓库管理、问题跟踪等功能

概览

Gitee 是一个MCP Server,收录自 MCP Hub 中国。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

代码管理版本控制开发工具Gitee

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-gitee": {
      "command": "npx",
      "args": [
        "-y",
        "@gitee/mcp-gitee"
      ],
      "env": {
        "GITEE_API_BASE_URL": "<GITEE_API_BASE_URL>",
        "GITEE_ACCESS_TOKEN": "<GITEE_ACCESS_TOKEN>"
      }
    }
  }
}

环境变量

GITEE_API_BASE_URL必填

https://gitee.com/api/v5

GITEE_ACCESS_TOKEN必填secret

<YOUR_GITEE_TOKEN>

相关资源

统一 Manifest

{
  "id": "io.mcp-cn.gitee/mcp-gitee",
  "type": "mcp-server",
  "version": "latest",
  "displayName": "Gitee",
  "description": "Gitee的MCP服务器,支持代码仓库管理、问题跟踪等功能",
  "author": {
    "name": "Gitee"
  },
  "iconUrl": "https://gitee.com/assets/favicon.ico",
  "homepage": "https://mcp-cn.com/server/105",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@gitee/mcp-gitee",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GITEE_API_BASE_URL",
            "description": "https://gitee.com/api/v5",
            "isRequired": true,
            "isSecret": false
          },
          {
            "name": "GITEE_ACCESS_TOKEN",
            "description": "<YOUR_GITEE_TOKEN>",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [
    "use_count:2002",
    "代码管理",
    "版本控制",
    "开发工具",
    "Gitee"
  ],
  "provenance": {
    "origin": "mcp-cn",
    "originalId": "@gitee/mcp-gitee",
    "originalUrl": "https://mcp-cn.com/server/105",
    "isOfficial": false,
    "status": "active"
  }
}
Gitee — MCP Server 安装与配置 · AgentHub