Skip to content

Commit ef159de

Browse files
committed
docs: Update installation instructions and add Trae configuration
- Added Trae configuration to MCP Hosts - Updated installation instructions to include npx start option
1 parent 1409e7b commit ef159de

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gitee MCP Server is a Model Context Protocol (MCP) server implementation for Git
2020
![comment_and_close_issue](./docs/images/comment_and_close_issue.jpg)
2121
details>
2222

23-
## Installation
23+
## Installation(This step can be skipped directly when starting npx)
2424

2525
### Prerequisites
2626

@@ -54,10 +54,11 @@ Check mcp-gitee version:
5454
mcp-gitee --version
5555
```
5656

57-
### MCP Hosts Configuration
57+
## MCP Hosts Configuration
5858
<div align="center">
5959
<a href="docs/install/claude.md" title="Claude"><img src="docs/install/logos/Claude.png" width=80 height=80>a>
6060
<a href="docs/install/cursor.md" title="Cursor"><img src="docs/install/logos/Cursor.png" width=80 height=80>a>
61+
<a href="docs/install/trae.md" title="Windsurf"><img src="docs/install/logos/Trae.png" width=80 height=80>a>
6162
<a href="docs/install/cline.md" title="Cline"><img src="docs/install/logos/Cline.png" width=80 height=80>a>
6263
<a href="docs/install/windsurf.md" title="Windsurf"><img src="docs/install/logos/Windsurf.png" width=80 height=80>a>
6364
div>

README_CN.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gitee MCP 服务器是一个用于 Gitee 的模型上下文协议(Model Contex
2020
![comment_and_close_issue](./docs/images/comment_and_close_issue.jpg)
2121
details>
2222

23-
## 安装
23+
## 安装(npx 启动可直接跳过该步骤)
2424

2525
### 前提条件
2626

@@ -54,11 +54,12 @@ Gitee MCP 服务器是一个用于 Gitee 的模型上下文协议(Model Contex
5454
mcp-gitee --version
5555
```
5656

57-
### MCP Hosts 配置
57+
## MCP Hosts 配置
5858

5959
<div align="center">
6060
<a href="docs/install/claude.md" title="Claude"><img src="docs/install/logos/Claude.png" width=80 height=80>a>
6161
<a href="docs/install/cursor.md" title="Cursor"><img src="docs/install/logos/Cursor.png" width=80 height=80>a>
62+
<a href="docs/install/trae.md" title="Windsurf"><img src="docs/install/logos/Trae.png" width=80 height=80>a>
6263
<a href="docs/install/cline.md" title="Cline"><img src="docs/install/logos/Cline.png" width=80 height=80>a>
6364
<a href="docs/install/windsurf.md" title="Windsurf"><img src="docs/install/logos/Windsurf.png" width=80 height=80>a>
6465
div>

docs/install/logos/Trae.png

334 KB
Loading

docs/install/trae.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
npx start:
2+
```json
3+
{
4+
"mcpServers": {
5+
"gitee": {
6+
"command": "npx",
7+
"args": [
8+
"-y",
9+
"@gitee/mcp-gitee@latest"
10+
],
11+
"env": {
12+
"GITEE_API_BASE": "https://gitee.com/api/v5",
13+
"GITEE_ACCESS_TOKEN": ""
14+
}
15+
}
16+
}
17+
}
18+
```
19+
20+
stdio mode:
21+
```json
22+
{
23+
"mcpServers": {
24+
"gitee": {
25+
"command": "mcp-gitee",
26+
"env": {
27+
"GITEE_API_BASE": "https://gitee.com/api/v5",
28+
"GITEE_ACCESS_TOKEN": ""
29+
}
30+
}
31+
}
32+
}
33+
```

0 commit comments

Comments
 (0)