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.
Files changed (3) hide show
  1. package/README.md +23 -0
  2. package/README_EN.md +23 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [English](./README_EN.md)
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/ncloud-mcp-server.svg)](https://www.npmjs.com/package/ncloud-mcp-server)
5
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
7
  [![Node.js](https://img.shields.io/badge/Node.js-20%2B-green.svg)](https://nodejs.org/)
7
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue.svg)](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
+ [![npm version](https://img.shields.io/npm/v/ncloud-mcp-server.svg)](https://www.npmjs.com/package/ncloud-mcp-server)
5
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
7
  [![Node.js](https://img.shields.io/badge/Node.js-20%2B-green.svg)](https://nodejs.org/)
7
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue.svg)](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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ncloud-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "MCP server for managing Naver Cloud Platform (Ncloud) infrastructure",
6
6
  "author": "sjk4425",