@gmo-internet/conoha-vps-mcp 0.4.0 → 0.4.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/NOTICE +6 -8
- package/README.md +2 -5
- package/dist/index.js +39 -375
- package/package.json +10 -10
package/NOTICE
CHANGED
|
@@ -30,7 +30,7 @@ ISC Licensed:
|
|
|
30
30
|
- zod-to-json-schema (3.25.0)
|
|
31
31
|
|
|
32
32
|
MIT Licensed:
|
|
33
|
-
- @modelcontextprotocol/sdk (1.24.
|
|
33
|
+
- @modelcontextprotocol/sdk (1.24.3)
|
|
34
34
|
- accepts (2.0.0)
|
|
35
35
|
- ajv (8.17.1)
|
|
36
36
|
- ajv-formats (3.0.1)
|
|
@@ -38,7 +38,7 @@ MIT Licensed:
|
|
|
38
38
|
- bytes (3.1.2)
|
|
39
39
|
- call-bind-apply-helpers (1.0.2)
|
|
40
40
|
- call-bound (1.0.4)
|
|
41
|
-
- content-disposition (1.0.
|
|
41
|
+
- content-disposition (1.0.1)
|
|
42
42
|
- content-type (1.0.5)
|
|
43
43
|
- cookie (0.7.2)
|
|
44
44
|
- cookie-signature (1.2.2)
|
|
@@ -59,7 +59,7 @@ MIT Licensed:
|
|
|
59
59
|
- express (5.2.1)
|
|
60
60
|
- express-rate-limit (7.5.1)
|
|
61
61
|
- fast-deep-equal (3.1.3)
|
|
62
|
-
- finalhandler (2.1.
|
|
62
|
+
- finalhandler (2.1.1)
|
|
63
63
|
- forwarded (0.2.0)
|
|
64
64
|
- fresh (2.0.0)
|
|
65
65
|
- function-bind (1.1.2)
|
|
@@ -68,7 +68,6 @@ MIT Licensed:
|
|
|
68
68
|
- gopd (1.2.0)
|
|
69
69
|
- has-symbols (1.1.0)
|
|
70
70
|
- hasown (2.0.2)
|
|
71
|
-
- http-errors (2.0.0)
|
|
72
71
|
- http-errors (2.0.1)
|
|
73
72
|
- iconv-lite (0.7.0)
|
|
74
73
|
- ipaddr.js (1.9.1)
|
|
@@ -79,7 +78,7 @@ MIT Licensed:
|
|
|
79
78
|
- media-typer (1.1.0)
|
|
80
79
|
- merge-descriptors (2.0.0)
|
|
81
80
|
- mime-db (1.54.0)
|
|
82
|
-
- mime-types (3.0.
|
|
81
|
+
- mime-types (3.0.2)
|
|
83
82
|
- ms (2.1.3)
|
|
84
83
|
- negotiator (1.0.0)
|
|
85
84
|
- object-assign (4.1.1)
|
|
@@ -88,13 +87,12 @@ MIT Licensed:
|
|
|
88
87
|
- parseurl (1.3.3)
|
|
89
88
|
- path-key (3.1.1)
|
|
90
89
|
- path-to-regexp (8.3.0)
|
|
91
|
-
- pkce-challenge (5.0.
|
|
90
|
+
- pkce-challenge (5.0.1)
|
|
92
91
|
- proxy-addr (2.0.7)
|
|
93
92
|
- range-parser (1.2.1)
|
|
94
|
-
- raw-body (3.0.
|
|
93
|
+
- raw-body (3.0.2)
|
|
95
94
|
- require-from-string (2.0.2)
|
|
96
95
|
- router (2.2.0)
|
|
97
|
-
- safe-buffer (5.2.1)
|
|
98
96
|
- safer-buffer (2.1.2)
|
|
99
97
|
- send (1.2.0)
|
|
100
98
|
- serve-static (2.2.0)
|
package/README.md
CHANGED
|
@@ -112,7 +112,6 @@ test-1という名前のサーバーにアタッチされているボリュー
|
|
|
112
112
|
### サーバー作成
|
|
113
113
|
|
|
114
114
|
```txt
|
|
115
|
-
サーバープラン一覧、イメージ一覧、ボリュームタイプ一覧を確認して、
|
|
116
115
|
Ubuntu 24.04でメモリ1GBのサーバーを、rootパスワード:vG7#kLp9zX!q、
|
|
117
116
|
ネームタグ:test-1、セキュリティグループ:defaultとして作ってください。
|
|
118
117
|
```
|
|
@@ -120,11 +119,9 @@ Ubuntu 24.04でメモリ1GBのサーバーを、rootパスワード:vG7#kLp9zX
|
|
|
120
119
|
### スタートアップスクリプトを利用したサーバー作成
|
|
121
120
|
|
|
122
121
|
```txt
|
|
123
|
-
サーバープラン一覧、イメージ一覧、ボリュームタイプ一覧を確認して、
|
|
124
122
|
Ubuntu 24.04でメモリ1GBのサーバーを、rootパスワード:vG7#kLp9zX!q、
|
|
125
123
|
ネームタグ:test、セキュリティグループ:defaultに加えて、SSHが使えるように作ってください。
|
|
126
|
-
|
|
127
|
-
利用できるようにセットアップしてください。
|
|
124
|
+
その際、VPS上でClaude Codeを利用できるようにしてください。
|
|
128
125
|
```
|
|
129
126
|
|
|
130
127
|
**⚠️ 注意: パスワードセキュリティに関する重要な警告**
|
|
@@ -150,7 +147,7 @@ HTTP(80番)とHTTPS(443番)のみを許可してください。
|
|
|
150
147
|
|
|
151
148
|
#### MCPサーバー実行環境
|
|
152
149
|
|
|
153
|
-
- ✅ Node.js
|
|
150
|
+
- ✅ Node.js v20以上
|
|
154
151
|
- ✅ Docker
|
|
155
152
|
- ✅ Linux / macOS / Windows
|
|
156
153
|
|