ncloud-mcp-server 1.0.0 → 1.0.1
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 +23 -0
- package/README_EN.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](./README_EN.md)
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/ncloud-mcp-server)
|
|
5
6
|
[](https://opensource.org/licenses/MIT)
|
|
6
7
|
[](https://nodejs.org/)
|
|
7
8
|
[](https://www.typescriptlang.org/)
|
|
@@ -42,6 +43,28 @@ Ncloud의 **60개 이상 서비스**, **1,000개 이상 API 도구**를 MCP 프
|
|
|
42
43
|
|
|
43
44
|
## 설치
|
|
44
45
|
|
|
46
|
+
### npx (권장 — 설치 불필요)
|
|
47
|
+
|
|
48
|
+
별도 설치 없이 바로 사용할 수 있습니다:
|
|
49
|
+
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"mcpServers": {
|
|
53
|
+
"ncloud": {
|
|
54
|
+
"command": "npx",
|
|
55
|
+
"args": ["-y", "ncloud-mcp-server"],
|
|
56
|
+
"env": {
|
|
57
|
+
"NCLOUD_ACCESS_KEY": "your-access-key",
|
|
58
|
+
"NCLOUD_SECRET_KEY": "your-secret-key",
|
|
59
|
+
"NCLOUD_REGION": "KR"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### 소스에서 빌드
|
|
67
|
+
|
|
45
68
|
```bash
|
|
46
69
|
# 저장소 클론
|
|
47
70
|
git clone https://github.com/sjk4425/ncloud-mcp-server.git
|
package/README_EN.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[한국어](./README.md)
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/ncloud-mcp-server)
|
|
5
6
|
[](https://opensource.org/licenses/MIT)
|
|
6
7
|
[](https://nodejs.org/)
|
|
7
8
|
[](https://www.typescriptlang.org/)
|
|
@@ -42,6 +43,28 @@ Provides **1,000+ API tools** across **60+ Ncloud services** via MCP protocol.
|
|
|
42
43
|
|
|
43
44
|
## Installation
|
|
44
45
|
|
|
46
|
+
### npx (Recommended — no install required)
|
|
47
|
+
|
|
48
|
+
Use directly without installation:
|
|
49
|
+
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"mcpServers": {
|
|
53
|
+
"ncloud": {
|
|
54
|
+
"command": "npx",
|
|
55
|
+
"args": ["-y", "ncloud-mcp-server"],
|
|
56
|
+
"env": {
|
|
57
|
+
"NCLOUD_ACCESS_KEY": "your-access-key",
|
|
58
|
+
"NCLOUD_SECRET_KEY": "your-secret-key",
|
|
59
|
+
"NCLOUD_REGION": "KR"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Build from source
|
|
67
|
+
|
|
45
68
|
```bash
|
|
46
69
|
# Clone the repository
|
|
47
70
|
git clone https://github.com/sjk4425/ncloud-mcp-server.git
|