@gmo-internet/conoha-vps-mcp 0.4.2 → 0.5.0

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 (4) hide show
  1. package/NOTICE +13 -8
  2. package/README.md +9 -1
  3. package/dist/index.js +171 -51
  4. package/package.json +13 -9
package/NOTICE CHANGED
@@ -16,9 +16,12 @@ limitations under the License.
16
16
  This product includes software developed by third parties:
17
17
 
18
18
 
19
+ BSD-2-Clause Licensed:
20
+ - json-schema-typed (8.0.2)
21
+
19
22
  BSD-3-Clause Licensed:
20
23
  - fast-uri (3.1.0)
21
- - qs (6.14.0)
24
+ - qs (6.14.1)
22
25
 
23
26
  ISC Licensed:
24
27
  - inherits (2.0.4)
@@ -27,14 +30,15 @@ ISC Licensed:
27
30
  - setprototypeof (1.2.0)
28
31
  - which (2.0.2)
29
32
  - wrappy (1.0.2)
30
- - zod-to-json-schema (3.25.0)
33
+ - zod-to-json-schema (3.25.1)
31
34
 
32
35
  MIT Licensed:
33
- - @modelcontextprotocol/sdk (1.24.3)
36
+ - @hono/node-server (1.19.9)
37
+ - @modelcontextprotocol/sdk (1.25.2)
34
38
  - accepts (2.0.0)
35
39
  - ajv (8.17.1)
36
40
  - ajv-formats (3.0.1)
37
- - body-parser (2.2.1)
41
+ - body-parser (2.2.2)
38
42
  - bytes (3.1.2)
39
43
  - call-bind-apply-helpers (1.0.2)
40
44
  - call-bound (1.0.4)
@@ -68,8 +72,9 @@ MIT Licensed:
68
72
  - gopd (1.2.0)
69
73
  - has-symbols (1.1.0)
70
74
  - hasown (2.0.2)
75
+ - hono (4.11.4)
71
76
  - http-errors (2.0.1)
72
- - iconv-lite (0.7.0)
77
+ - iconv-lite (0.7.2)
73
78
  - ipaddr.js (1.9.1)
74
79
  - is-promise (4.0.0)
75
80
  - jose (6.1.3)
@@ -94,8 +99,8 @@ MIT Licensed:
94
99
  - require-from-string (2.0.2)
95
100
  - router (2.2.0)
96
101
  - safer-buffer (2.1.2)
97
- - send (1.2.0)
98
- - serve-static (2.2.0)
102
+ - send (1.2.1)
103
+ - serve-static (2.2.1)
99
104
  - shebang-command (2.0.0)
100
105
  - shebang-regex (3.0.0)
101
106
  - side-channel (1.1.0)
@@ -107,6 +112,6 @@ MIT Licensed:
107
112
  - type-is (2.0.1)
108
113
  - unpipe (1.0.0)
109
114
  - vary (1.1.2)
110
- - zod (4.1.13)
115
+ - zod (4.3.5)
111
116
 
112
117
  For the full license text of these dependencies, please refer to their respective repositories or the node_modules directory.
package/README.md CHANGED
@@ -35,7 +35,7 @@ Claude、GitHub Copilot、ClineなどのAIエージェントと連携するこ
35
35
  |------|------|
36
36
  | 🇯🇵 **完全日本語対応** | 完全日本語対応 「ConoHa VPS」のリソースを、日本語で直感的な操作が可能 |
37
37
  | 🤖 **AI エージェントとの連携** | GitHub Copilot や Claude など、主要な AI エージェントと連携し、操作や構成の提案をサポート |
38
- | 🔧 **包括的API** | サーバー・ボリューム・イメージ・セキュリティグループ管理をサポート |
38
+ | 🔧 **包括的API** | サーバー・ボリューム・イメージ・セキュリティグループ・オブジェクトストレージ管理をサポート |
39
39
  | 🐳 **クロスプラットフォーム** | Node.js および Dockerでの実行環境を提供 |
40
40
  | 🛡️ **セキュリティ対策** | OpenStack 準拠のセキュリティ機能を装備 |
41
41
 
@@ -139,6 +139,13 @@ Webサーバー用のセキュリティグループをweb-server-secgroupとい
139
139
  HTTP(80番)とHTTPS(443番)のみを許可してください。
140
140
  ```
141
141
 
142
+ ### オブジェクトストレージ
143
+
144
+ ```
145
+ オブジェクトストレージの容量を200GBに設定をして、コンテナ名:mysite-dev、
146
+ オブジェクト名:index.html、アップロードファイル:path/to/fileでオブジェクトを作成してください。
147
+ ```
148
+
142
149
  ## 📚 ドキュメント
143
150
 
144
151
  ### 対応プラットフォーム
@@ -175,6 +182,7 @@ HTTP(80番)とHTTPS(443番)のみを許可してください。
175
182
  | SSHキーペア | 作成 / 削除 |
176
183
  | セキュリティグループ | 作成 / 削除 / 更新 |
177
184
  | セキュリティグループルール | 作成 / 削除 |
185
+ | オブジェクトストレージ | 作成 / 削除 / 更新 |
178
186
 
179
187
  📄 ツールごとの全機能一覧は[こちら](docs/tool.md)を参照してください。
180
188