# Gitee MCP Server (npm · gitee-mcp)

让 AI 用自然语言管理 Gitee 仓库：查 star、管 Issue、基于 commit 生成中文 CHANGELOG（原生无此 API）

- Trust score: 76/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- npm · `gitee-mcp`: 76/100 (this document), [markdown](https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp.md), [page](https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp)

## Channel facts

- Registry: `npm`
- Package: `gitee-mcp`
- Version: `0.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-20.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 97 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 8 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 86/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 493 tokens (~70/item across 7 items; 6 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the Gitee MCP Server server?

Gitee MCP Server runs locally as an npm package, launched with npx -y gitee-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add paulseth-gitee-mcp-server -- npx -y gitee-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "paulseth-gitee-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "gitee-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "paulseth-gitee-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "gitee-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add paulseth-gitee-mcp-server -- npx -y gitee-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "paulseth-gitee-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "gitee-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add paulseth-gitee-mcp-server --command npx --arg -y --arg gitee-mcp
```

### Hermes

```yaml
mcp_servers:
  paulseth-gitee-mcp-server:
    command: "npx"
    args: ["-y", "gitee-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "paulseth-gitee-mcp-server": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "gitee-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add paulseth-gitee-mcp-server -t stdio -c npx -a -y gitee-mcp
```

### Other

```json
{
  "mcpServers": {
    "paulseth-gitee-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "gitee-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-19 (score 76, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-12 (score 72, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-11 (score 57)

First indexed and scored.

## MCP tools (6)

### `get_repo_stats` (~62 tokens)

获取 Gitee 仓库统计：star/fork/watch 数、开放 issue 数

Input parameters:

- `owner` (string, required): 仓库所有者，如 jokerbhind
- `repo` (string, required): 仓库名，如 social-media-bot-cn-generic

### `list_stargazers` (~65 tokens)

列出给仓库点 star 的用户（需 PAT，无凭证走 mock）

Input parameters:

- `owner` (string, required): 仓库所有者
- `page` (number): 页码，默认 1
- `repo` (string, required): 仓库名

### `list_issues` (~71 tokens)

列出仓库 Issue，支持按状态/标签过滤

Input parameters:

- `labels` (string): 逗号分隔标签，可选
- `owner` (string, required): 仓库所有者
- `repo` (string, required): 仓库名
- `state` (string): 默认 open

### `create_issue` (~80 tokens)

在仓库新建 Issue（收需求/建任务）

Input parameters:

- `body` (string): 正文，可选
- `labels` (string): 逗号分隔标签，可选
- `owner` (string, required): 仓库所有者
- `repo` (string, required): 仓库名
- `title` (string, required): 标题

### `update_issue` (~81 tokens)

更新 Issue 状态或标签（自动打标签/关单）

Input parameters:

- `labels` (string): 逗号分隔标签，可选
- `number` (number, required): Issue 编号
- `owner` (string, required): 仓库所有者
- `repo` (string, required): 仓库名
- `state` (string): 目标状态

### `generate_changelog` (~90 tokens)

基于最近 commit 生成中文 CHANGELOG（Gitee 无原生 API，靠 commits 组合）

Input parameters:

- `max` (number): 最多取多少条 commit，默认 50
- `owner` (string, required): 仓库所有者
- `repo` (string, required): 仓库名
- `since_tag` (string): 从此 tag/分支之后的 commit，可选

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp#diagnostics

## Score history

- 2026-09-20: 76
- 2026-09-19: 76
- 2026-09-18: 72
- 2026-09-17: 72
- 2026-09-16: 72
- 2026-09-15: 72
- 2026-09-14: 72
- 2026-09-13: 72
- 2026-09-12: 72
- 2026-09-11: 57

## Common questions

### What is the Gitee MCP Server server?

Gitee MCP Server is listed in the public MCP registry as io.github.PaulSeth/gitee-mcp-server. 让 AI 用自然语言管理 Gitee 仓库：查 star、管 Issue、基于 commit 生成中文 CHANGELOG（原生无此 API）. This page covers its npm package (gitee-mcp).

### Is the Gitee MCP Server server safe to use?

Gitee MCP Server scores 76 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Gitee MCP Server server expose?

Gitee MCP Server exposes 6 tools: get_repo_stats, list_stargazers, list_issues, create_issue, update_issue, generate_changelog. Their descriptions and schemas cost roughly 449 tokens of context every time the server is loaded.

### Is the Gitee MCP Server server still maintained?

Gitee MCP Server is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Gitee MCP Server server under?

Gitee MCP Server declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/gitee-mcp
- Socket report: https://socket.dev/npm/package/gitee-mcp
- Repository: https://github.com/PaulSeth/gitee-mcp-server
- Website: https://gitee.com/jokerbhind/gitee-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp.json
- HTML version of this page: https://verifymcp.io/servers/paulseth-gitee-mcp-server/gitee-mcp
