redmine-devrelay-client 0.5.0 → 0.5.2
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.ko.md +29 -0
- package/README.md +15 -13
- package/package.json +3 -2
package/README.ko.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# redmine-devrelay-client
|
|
2
|
+
|
|
3
|
+
[](README.md)
|
|
4
|
+
|
|
5
|
+
[redmine-devrelay](https://www.npmjs.com/package/redmine-devrelay) MCP 서버가 사용하는 Redmine REST 클라이언트입니다.
|
|
6
|
+
|
|
7
|
+
- **버전:** `0.5.2` (MCP 서버와 맞춤)
|
|
8
|
+
- **GitHub:** https://github.com/HuijungYoon/devrelay
|
|
9
|
+
- **MCP 서버:** [redmine-devrelay](https://www.npmjs.com/package/redmine-devrelay)
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install redmine-devrelay-client@0.5.2
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 지원 기능
|
|
16
|
+
|
|
17
|
+
- 이슈 조회 / 생성 / 수정 / 댓글 / 상태 변경 / **첨부 업로드**
|
|
18
|
+
- 프로젝트·멤버 목록, 사용자 검색 (`searchUsers`)
|
|
19
|
+
- 담당자·관리자(`watchers`) 이름/id 해석
|
|
20
|
+
- 사설 IPv4 HTTP, `/redmine` 등 base path 유지
|
|
21
|
+
- HTML 본문 포맷
|
|
22
|
+
- `formatDescriptionForRedmine` — 평문 줄 → `<p>…</p>`
|
|
23
|
+
- `formatNotesForRedmine` — `\n` → `<br />`
|
|
24
|
+
- `detectNotesMarkup` — Textile/Markdown 감지 (MCP notes 차단용)
|
|
25
|
+
- 첨부: `inspectAttachments` / `uploadFile` / `addIssueAttachments` (최대 5개·10MiB)
|
|
26
|
+
|
|
27
|
+
## License
|
|
28
|
+
|
|
29
|
+
MIT
|
package/README.md
CHANGED
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
# redmine-devrelay-client
|
|
2
2
|
|
|
3
|
-
[
|
|
3
|
+
[](README.ko.md)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Redmine REST client used by the [redmine-devrelay](https://www.npmjs.com/package/redmine-devrelay) MCP server.
|
|
6
|
+
|
|
7
|
+
- **Version:** `0.5.2` (aligned with the MCP server)
|
|
6
8
|
- **GitHub:** https://github.com/HuijungYoon/devrelay
|
|
7
|
-
- **MCP
|
|
9
|
+
- **MCP server:** [redmine-devrelay](https://www.npmjs.com/package/redmine-devrelay)
|
|
8
10
|
|
|
9
11
|
```bash
|
|
10
|
-
npm install redmine-devrelay-client@0.5.
|
|
12
|
+
npm install redmine-devrelay-client@0.5.2
|
|
11
13
|
```
|
|
12
14
|
|
|
13
|
-
##
|
|
15
|
+
## Features
|
|
14
16
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
- HTML
|
|
20
|
-
- `formatDescriptionForRedmine` —
|
|
17
|
+
- Issue read / create / update / comment / status change / **attachment upload**
|
|
18
|
+
- Project and member lists, user search (`searchUsers`)
|
|
19
|
+
- Resolve assignee and watchers by name or id
|
|
20
|
+
- Private IPv4 HTTP, preserve base paths such as `/redmine`
|
|
21
|
+
- HTML body formatting
|
|
22
|
+
- `formatDescriptionForRedmine` — plain lines → `<p>…</p>`
|
|
21
23
|
- `formatNotesForRedmine` — `\n` → `<br />`
|
|
22
|
-
- `detectNotesMarkup` — Textile/Markdown
|
|
23
|
-
-
|
|
24
|
+
- `detectNotesMarkup` — detect Textile/Markdown (used to block MCP notes)
|
|
25
|
+
- Attachments: `inspectAttachments` / `uploadFile` / `addIssueAttachments` (max 5 files · 10MiB)
|
|
24
26
|
|
|
25
27
|
## License
|
|
26
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redmine-devrelay-client",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Redmine REST client for redmine-devrelay MCP ??auth, pagination, issue read/write helpers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
16
|
-
"README.md"
|
|
16
|
+
"README.md",
|
|
17
|
+
"README.ko.md"
|
|
17
18
|
],
|
|
18
19
|
"repository": {
|
|
19
20
|
"type": "git",
|