@amonstack/gitea-mcp 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/README.zh-CN.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,15 +18,17 @@ The server communicates over stdio and wraps the [Gitea REST API
|
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
|
-
### From
|
|
21
|
+
### From npm
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
npm set @amonstack:registry https://npm.pkg.github.com
|
|
25
|
-
npm set //npm.pkg.github.com/:_authToken YOUR_GITHUB_PAT
|
|
26
24
|
npm install -g @amonstack/gitea-mcp
|
|
27
25
|
```
|
|
28
26
|
|
|
29
|
-
|
|
27
|
+
Or run directly without global install:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx @amonstack/gitea-mcp
|
|
31
|
+
```
|
|
30
32
|
|
|
31
33
|
### Build from source
|
|
32
34
|
|
package/README.zh-CN.md
CHANGED
|
@@ -17,15 +17,17 @@ opencode、Cursor 等)后,AI 助手即可通过自然语言在 Gitea 实例
|
|
|
17
17
|
|
|
18
18
|
## 安装
|
|
19
19
|
|
|
20
|
-
### 从
|
|
20
|
+
### 从 npm 安装
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm set @amonstack:registry https://npm.pkg.github.com
|
|
24
|
-
npm set //npm.pkg.github.com/:_authToken <你的 GitHub PAT>
|
|
25
23
|
npm install -g @amonstack/gitea-mcp
|
|
26
24
|
```
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
或无需全局安装,直接运行:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npx @amonstack/gitea-mcp
|
|
30
|
+
```
|
|
29
31
|
|
|
30
32
|
### 从源码构建
|
|
31
33
|
|