@nirvana-labs/nirvana-mcp 1.17.3 → 1.18.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.
- package/README.md +7 -0
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.js +2 -1
- package/docs-search-tool.js.map +1 -1
- package/docs-search-tool.mjs +2 -1
- package/docs-search-tool.mjs.map +1 -1
- package/options.d.mts.map +1 -1
- package/options.d.ts.map +1 -1
- package/options.js +3 -2
- package/options.js.map +1 -1
- package/options.mjs +3 -2
- package/options.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/docs-search-tool.ts +4 -1
- package/src/options.ts +3 -2
- package/src/server.ts +1 -1
- package/src/tools/api-keys/create-api-keys.ts +11 -4
- package/src/tools/api-keys/get-api-keys.ts +1 -1
- package/src/tools/api-keys/list-api-keys.ts +1 -1
- package/src/tools/api-keys/update-api-keys.ts +9 -2
- package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +3 -3
- package/src/tools/compute/vms/create-compute-vms.ts +4 -4
- package/src/tools/compute/vms/delete-compute-vms.ts +1 -1
- package/src/tools/compute/vms/restart-compute-vms.ts +1 -1
- package/src/tools/compute/vms/update-compute-vms.ts +1 -1
- package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +3 -3
- package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +2 -2
- package/src/tools/compute/volumes/create-compute-volumes.ts +4 -4
- package/src/tools/compute/volumes/delete-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/get-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/list-compute-volumes.ts +1 -1
- package/src/tools/compute/volumes/update-compute-volumes.ts +3 -3
- package/src/tools/connect/flux/create-connect-flux.ts +102 -0
- package/src/tools/connect/flux/delete-connect-flux.ts +47 -0
- package/src/tools/connect/flux/get-connect-flux.ts +1 -1
- package/src/tools/connect/flux/list-connect-flux.ts +1 -1
- package/src/tools/connect/flux/providers/list-flux-connect-providers.ts +44 -0
- package/src/tools/connect/flux/update-connect-flux.ts +49 -0
- package/src/tools/index.ts +8 -0
- package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +6 -6
- package/src/tools/networking/firewall-rules/delete-networking-firewall-rules.ts +1 -1
- package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +1 -1
- package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +1 -1
- package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +6 -6
- package/src/tools/networking/vpcs/create-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/delete-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/get-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/list-networking-vpcs.ts +1 -1
- package/src/tools/networking/vpcs/update-networking-vpcs.ts +1 -1
- package/src/tools/operations/get-operations.ts +1 -1
- package/src/tools/operations/list-operations.ts +1 -1
- package/src/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.ts +1 -1
- package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +1 -1
- package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +1 -1
- package/src/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.ts +1 -1
- package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +1 -1
- package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +1 -1
- package/src/tools/user/get-user.ts +1 -1
- package/tools/api-keys/create-api-keys.d.mts.map +1 -1
- package/tools/api-keys/create-api-keys.d.ts.map +1 -1
- package/tools/api-keys/create-api-keys.js +11 -4
- package/tools/api-keys/create-api-keys.js.map +1 -1
- package/tools/api-keys/create-api-keys.mjs +11 -4
- package/tools/api-keys/create-api-keys.mjs.map +1 -1
- package/tools/api-keys/get-api-keys.js +1 -1
- package/tools/api-keys/get-api-keys.js.map +1 -1
- package/tools/api-keys/get-api-keys.mjs +1 -1
- package/tools/api-keys/get-api-keys.mjs.map +1 -1
- package/tools/api-keys/list-api-keys.js +1 -1
- package/tools/api-keys/list-api-keys.js.map +1 -1
- package/tools/api-keys/list-api-keys.mjs +1 -1
- package/tools/api-keys/list-api-keys.mjs.map +1 -1
- package/tools/api-keys/update-api-keys.d.mts.map +1 -1
- package/tools/api-keys/update-api-keys.d.ts.map +1 -1
- package/tools/api-keys/update-api-keys.js +9 -2
- package/tools/api-keys/update-api-keys.js.map +1 -1
- package/tools/api-keys/update-api-keys.mjs +9 -2
- package/tools/api-keys/update-api-keys.mjs.map +1 -1
- package/tools/compute/vms/availability/create-vms-compute-availability.js +3 -3
- package/tools/compute/vms/availability/create-vms-compute-availability.mjs +3 -3
- package/tools/compute/vms/create-compute-vms.js +4 -4
- package/tools/compute/vms/create-compute-vms.mjs +4 -4
- package/tools/compute/vms/delete-compute-vms.js +1 -1
- package/tools/compute/vms/delete-compute-vms.mjs +1 -1
- package/tools/compute/vms/restart-compute-vms.js +1 -1
- package/tools/compute/vms/restart-compute-vms.mjs +1 -1
- package/tools/compute/vms/update-compute-vms.js +1 -1
- package/tools/compute/vms/update-compute-vms.mjs +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.js +1 -1
- package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/availability/create-volumes-compute-availability.js +3 -3
- package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +3 -3
- package/tools/compute/volumes/availability/update-volumes-compute-availability.js +2 -2
- package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +2 -2
- package/tools/compute/volumes/create-compute-volumes.js +4 -4
- package/tools/compute/volumes/create-compute-volumes.mjs +4 -4
- package/tools/compute/volumes/delete-compute-volumes.js +1 -1
- package/tools/compute/volumes/delete-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/get-compute-volumes.js +1 -1
- package/tools/compute/volumes/get-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/list-compute-volumes.js +1 -1
- package/tools/compute/volumes/list-compute-volumes.mjs +1 -1
- package/tools/compute/volumes/update-compute-volumes.js +3 -3
- package/tools/compute/volumes/update-compute-volumes.mjs +3 -3
- package/tools/connect/flux/create-connect-flux.d.mts +45 -0
- package/tools/connect/flux/create-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/create-connect-flux.d.ts +45 -0
- package/tools/connect/flux/create-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/create-connect-flux.js +97 -0
- package/tools/connect/flux/create-connect-flux.js.map +1 -0
- package/tools/connect/flux/create-connect-flux.mjs +93 -0
- package/tools/connect/flux/create-connect-flux.mjs.map +1 -0
- package/tools/connect/flux/delete-connect-flux.d.mts +45 -0
- package/tools/connect/flux/delete-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/delete-connect-flux.d.ts +45 -0
- package/tools/connect/flux/delete-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/delete-connect-flux.js +42 -0
- package/tools/connect/flux/delete-connect-flux.js.map +1 -0
- package/tools/connect/flux/delete-connect-flux.mjs +38 -0
- package/tools/connect/flux/delete-connect-flux.mjs.map +1 -0
- package/tools/connect/flux/get-connect-flux.js +1 -1
- package/tools/connect/flux/get-connect-flux.js.map +1 -1
- package/tools/connect/flux/get-connect-flux.mjs +1 -1
- package/tools/connect/flux/get-connect-flux.mjs.map +1 -1
- package/tools/connect/flux/list-connect-flux.js +1 -1
- package/tools/connect/flux/list-connect-flux.js.map +1 -1
- package/tools/connect/flux/list-connect-flux.mjs +1 -1
- package/tools/connect/flux/list-connect-flux.mjs.map +1 -1
- package/tools/connect/flux/providers/list-flux-connect-providers.d.mts +45 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.d.mts.map +1 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.d.ts +45 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.d.ts.map +1 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.js +39 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.js.map +1 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.mjs +35 -0
- package/tools/connect/flux/providers/list-flux-connect-providers.mjs.map +1 -0
- package/tools/connect/flux/update-connect-flux.d.mts +45 -0
- package/tools/connect/flux/update-connect-flux.d.mts.map +1 -0
- package/tools/connect/flux/update-connect-flux.d.ts +45 -0
- package/tools/connect/flux/update-connect-flux.d.ts.map +1 -0
- package/tools/connect/flux/update-connect-flux.js +44 -0
- package/tools/connect/flux/update-connect-flux.js.map +1 -0
- package/tools/connect/flux/update-connect-flux.mjs +40 -0
- package/tools/connect/flux/update-connect-flux.mjs.map +1 -0
- package/tools/index.d.mts.map +1 -1
- package/tools/index.d.ts.map +1 -1
- package/tools/index.js +8 -0
- package/tools/index.js.map +1 -1
- package/tools/index.mjs +8 -0
- package/tools/index.mjs.map +1 -1
- package/tools/networking/firewall-rules/create-networking-firewall-rules.js +6 -6
- package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +6 -6
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.js +1 -1
- package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.js +1 -1
- package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.js +1 -1
- package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +1 -1
- package/tools/networking/firewall-rules/update-networking-firewall-rules.js +6 -6
- package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +6 -6
- package/tools/networking/vpcs/create-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/create-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/delete-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/delete-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/get-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/list-networking-vpcs.mjs +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.js +1 -1
- package/tools/networking/vpcs/update-networking-vpcs.mjs +1 -1
- package/tools/operations/get-operations.js +1 -1
- package/tools/operations/get-operations.mjs +1 -1
- package/tools/operations/list-operations.js +1 -1
- package/tools/operations/list-operations.mjs +1 -1
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js +1 -1
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js.map +1 -1
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs +1 -1
- package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs.map +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +1 -1
- package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +1 -1
- package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -1
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js +1 -1
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js.map +1 -1
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs +1 -1
- package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs.map +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +1 -1
- package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +1 -1
- package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -1
- package/tools/user/get-user.js +1 -1
- package/tools/user/get-user.js.map +1 -1
- package/tools/user/get-user.mjs +1 -1
- package/tools/user/get-user.mjs.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-api-keys.d.mts","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-api-keys.d.mts","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA+BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-api-keys.d.ts","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"update-api-keys.d.ts","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,uCAAuC;OAE9E,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,WAAW,MAAM,uBAAuB;AAE/C,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA+BlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,WAAW,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,4EAG3F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,WAAW,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAK5F,wBAA2C"}
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'update_api_keys',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate an existing API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate an existing API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API Key response.',\n properties: {\n id: {\n type: 'string',\n description: 'API Key ID.'\n },\n created_at: {\n type: 'string',\n description: 'When the API Key was created.',\n format: 'date-time'\n },\n expires_at: {\n type: 'string',\n description: 'When the API Key expires and is no longer valid.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'API Key name.'\n },\n status: {\n type: 'string',\n description: 'Status of the API Key.',\n enum: [ 'active',\n 'inactive',\n 'expired'\n ]\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the API Key.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the API Key was updated.',\n format: 'date-time'\n },\n key: {\n type: 'string',\n description: 'API Key. Only returned on creation.'\n },\n starts_at: {\n type: 'string',\n description: 'When the API Key starts to be valid.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'expires_at',\n 'name',\n 'status',\n 'tags',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -23,7 +23,14 @@ exports.tool = {
|
|
|
23
23
|
},
|
|
24
24
|
name: {
|
|
25
25
|
type: 'string',
|
|
26
|
-
description: 'API
|
|
26
|
+
description: 'API Key name.',
|
|
27
|
+
},
|
|
28
|
+
tags: {
|
|
29
|
+
type: 'array',
|
|
30
|
+
description: 'Tags to attach to the API Key.',
|
|
31
|
+
items: {
|
|
32
|
+
type: 'string',
|
|
33
|
+
},
|
|
27
34
|
},
|
|
28
35
|
jq_filter: {
|
|
29
36
|
type: 'string',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-api-keys.js","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"update-api-keys.js","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,mEAAkE;AAClE,iEAAsF;AAKzE,QAAA,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEW,QAAA,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,k1DAAk1D;IACp1D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,eAAe;aAC7B;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,CAAC;KACzB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEK,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACvD,OAAO,IAAA,2BAAmB,EAAC,MAAM,IAAA,uBAAW,EAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC1G,CAAC,CAAC;AAHW,QAAA,OAAO,WAGlB;AAEF,kBAAe,EAAE,QAAQ,EAAR,gBAAQ,EAAE,IAAI,EAAJ,YAAI,EAAE,OAAO,EAAP,eAAO,EAAE,CAAC"}
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'update_api_keys',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate an existing API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate an existing API key\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/api_key',\n $defs: {\n api_key: {\n type: 'object',\n description: 'API Key response.',\n properties: {\n id: {\n type: 'string',\n description: 'API Key ID.'\n },\n created_at: {\n type: 'string',\n description: 'When the API Key was created.',\n format: 'date-time'\n },\n expires_at: {\n type: 'string',\n description: 'When the API Key expires and is no longer valid.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'API Key name.'\n },\n status: {\n type: 'string',\n description: 'Status of the API Key.',\n enum: [ 'active',\n 'inactive',\n 'expired'\n ]\n },\n tags: {\n type: 'array',\n description: 'Tags to attach to the API Key.',\n items: {\n type: 'string'\n }\n },\n updated_at: {\n type: 'string',\n description: 'When the API Key was updated.',\n format: 'date-time'\n },\n key: {\n type: 'string',\n description: 'API Key. Only returned on creation.'\n },\n starts_at: {\n type: 'string',\n description: 'When the API Key starts to be valid.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'expires_at',\n 'name',\n 'status',\n 'tags',\n 'updated_at'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -20,7 +20,14 @@ export const tool = {
|
|
|
20
20
|
},
|
|
21
21
|
name: {
|
|
22
22
|
type: 'string',
|
|
23
|
-
description: 'API
|
|
23
|
+
description: 'API Key name.',
|
|
24
|
+
},
|
|
25
|
+
tags: {
|
|
26
|
+
type: 'array',
|
|
27
|
+
description: 'Tags to attach to the API Key.',
|
|
28
|
+
items: {
|
|
29
|
+
type: 'string',
|
|
30
|
+
},
|
|
24
31
|
},
|
|
25
32
|
jq_filter: {
|
|
26
33
|
type: 'string',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-api-keys.mjs","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,
|
|
1
|
+
{"version":3,"file":"update-api-keys.mjs","sourceRoot":"","sources":["../../src/tools/api-keys/update-api-keys.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE,MAAM,qCAAqC;OAC1D,EAAY,mBAAmB,EAAE,MAAM,uCAAuC;AAKrF,MAAM,CAAC,MAAM,QAAQ,GAAa;IAChC,QAAQ,EAAE,UAAU;IACpB,SAAS,EAAE,OAAO;IAClB,IAAI,EAAE,EAAE;IACR,UAAU,EAAE,OAAO;IACnB,QAAQ,EAAE,2BAA2B;IACrC,WAAW,EAAE,gBAAgB;CAC9B,CAAC;AAEF,MAAM,CAAC,MAAM,IAAI,GAAS;IACxB,IAAI,EAAE,iBAAiB;IACvB,WAAW,EACT,k1DAAk1D;IACp1D,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE;YACV,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;aACf;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,eAAe;aAC7B;YACD,IAAI,EAAE;gBACJ,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,gCAAgC;gBAC7C,KAAK,EAAE;oBACL,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,WAAW;gBAClB,WAAW,EACT,kWAAkW;aACrW;SACF;QACD,QAAQ,EAAE,CAAC,YAAY,CAAC;KACzB;IACD,WAAW,EAAE,EAAE;CAChB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,MAAmB,EAAE,IAAyC,EAAE,EAAE;IAC9F,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,GAAG,IAAW,CAAC;IACvD,OAAO,mBAAmB,CAAC,MAAM,WAAW,CAAC,SAAS,EAAE,MAAM,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAC1G,CAAC,CAAC;AAEF,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -24,7 +24,7 @@ exports.tool = {
|
|
|
24
24
|
properties: {
|
|
25
25
|
size: {
|
|
26
26
|
type: 'integer',
|
|
27
|
-
description: 'Size of the
|
|
27
|
+
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
29
|
},
|
|
30
30
|
required: ['size'],
|
|
@@ -66,11 +66,11 @@ exports.tool = {
|
|
|
66
66
|
properties: {
|
|
67
67
|
name: {
|
|
68
68
|
type: 'string',
|
|
69
|
-
description: 'Name of the
|
|
69
|
+
description: 'Name of the Volume.',
|
|
70
70
|
},
|
|
71
71
|
size: {
|
|
72
72
|
type: 'integer',
|
|
73
|
-
description: 'Size of the
|
|
73
|
+
description: 'Size of the Volume in GB.',
|
|
74
74
|
},
|
|
75
75
|
},
|
|
76
76
|
required: ['name', 'size'],
|
|
@@ -21,7 +21,7 @@ export const tool = {
|
|
|
21
21
|
properties: {
|
|
22
22
|
size: {
|
|
23
23
|
type: 'integer',
|
|
24
|
-
description: 'Size of the
|
|
24
|
+
description: 'Size of the Volume in GB.',
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
required: ['size'],
|
|
@@ -63,11 +63,11 @@ export const tool = {
|
|
|
63
63
|
properties: {
|
|
64
64
|
name: {
|
|
65
65
|
type: 'string',
|
|
66
|
-
description: 'Name of the
|
|
66
|
+
description: 'Name of the Volume.',
|
|
67
67
|
},
|
|
68
68
|
size: {
|
|
69
69
|
type: 'integer',
|
|
70
|
-
description: 'Size of the
|
|
70
|
+
description: 'Size of the Volume in GB.',
|
|
71
71
|
},
|
|
72
72
|
},
|
|
73
73
|
required: ['name', 'size'],
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'create_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -24,7 +24,7 @@ exports.tool = {
|
|
|
24
24
|
properties: {
|
|
25
25
|
size: {
|
|
26
26
|
type: 'integer',
|
|
27
|
-
description: 'Size of the
|
|
27
|
+
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
29
|
},
|
|
30
30
|
required: ['size'],
|
|
@@ -66,11 +66,11 @@ exports.tool = {
|
|
|
66
66
|
properties: {
|
|
67
67
|
name: {
|
|
68
68
|
type: 'string',
|
|
69
|
-
description: 'Name of the
|
|
69
|
+
description: 'Name of the Volume.',
|
|
70
70
|
},
|
|
71
71
|
size: {
|
|
72
72
|
type: 'integer',
|
|
73
|
-
description: 'Size of the
|
|
73
|
+
description: 'Size of the Volume in GB.',
|
|
74
74
|
},
|
|
75
75
|
},
|
|
76
76
|
required: ['name', 'size'],
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'create_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -21,7 +21,7 @@ export const tool = {
|
|
|
21
21
|
properties: {
|
|
22
22
|
size: {
|
|
23
23
|
type: 'integer',
|
|
24
|
-
description: 'Size of the
|
|
24
|
+
description: 'Size of the Volume in GB.',
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
required: ['size'],
|
|
@@ -63,11 +63,11 @@ export const tool = {
|
|
|
63
63
|
properties: {
|
|
64
64
|
name: {
|
|
65
65
|
type: 'string',
|
|
66
|
-
description: 'Name of the
|
|
66
|
+
description: 'Name of the Volume.',
|
|
67
67
|
},
|
|
68
68
|
size: {
|
|
69
69
|
type: 'integer',
|
|
70
|
-
description: 'Size of the
|
|
70
|
+
description: 'Size of the Volume in GB.',
|
|
71
71
|
},
|
|
72
72
|
},
|
|
73
73
|
required: ['name', 'size'],
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'delete_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'delete_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'restart_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nRestart a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nRestart a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'restart_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nRestart a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nRestart a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'update_compute_vms',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'update_compute_vms',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nUpdate a VM\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'list_vms_compute_volumes',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'list_vms_compute_volumes',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList VM's Volumes\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume_list',\n $defs: {\n volume_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/volume'\n }\n }\n },\n required: [ 'items'\n ]\n },\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -20,15 +20,15 @@ exports.tool = {
|
|
|
20
20
|
properties: {
|
|
21
21
|
name: {
|
|
22
22
|
type: 'string',
|
|
23
|
-
description: 'Name of the
|
|
23
|
+
description: 'Name of the Volume.',
|
|
24
24
|
},
|
|
25
25
|
size: {
|
|
26
26
|
type: 'integer',
|
|
27
|
-
description: 'Size of the
|
|
27
|
+
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
29
|
vm_id: {
|
|
30
30
|
type: 'string',
|
|
31
|
-
description: 'ID of the VM the
|
|
31
|
+
description: 'ID of the VM the Volume is attached to.',
|
|
32
32
|
},
|
|
33
33
|
jq_filter: {
|
|
34
34
|
type: 'string',
|
|
@@ -17,15 +17,15 @@ export const tool = {
|
|
|
17
17
|
properties: {
|
|
18
18
|
name: {
|
|
19
19
|
type: 'string',
|
|
20
|
-
description: 'Name of the
|
|
20
|
+
description: 'Name of the Volume.',
|
|
21
21
|
},
|
|
22
22
|
size: {
|
|
23
23
|
type: 'integer',
|
|
24
|
-
description: 'Size of the
|
|
24
|
+
description: 'Size of the Volume in GB.',
|
|
25
25
|
},
|
|
26
26
|
vm_id: {
|
|
27
27
|
type: 'string',
|
|
28
|
-
description: 'ID of the VM the
|
|
28
|
+
description: 'ID of the VM the Volume is attached to.',
|
|
29
29
|
},
|
|
30
30
|
jq_filter: {
|
|
31
31
|
type: 'string',
|
|
@@ -23,11 +23,11 @@ exports.tool = {
|
|
|
23
23
|
},
|
|
24
24
|
name: {
|
|
25
25
|
type: 'string',
|
|
26
|
-
description: 'Name of the
|
|
26
|
+
description: 'Name of the Volume.',
|
|
27
27
|
},
|
|
28
28
|
size: {
|
|
29
29
|
type: 'integer',
|
|
30
|
-
description: 'Size of the
|
|
30
|
+
description: 'Size of the Volume in GB.',
|
|
31
31
|
},
|
|
32
32
|
jq_filter: {
|
|
33
33
|
type: 'string',
|
|
@@ -20,11 +20,11 @@ export const tool = {
|
|
|
20
20
|
},
|
|
21
21
|
name: {
|
|
22
22
|
type: 'string',
|
|
23
|
-
description: 'Name of the
|
|
23
|
+
description: 'Name of the Volume.',
|
|
24
24
|
},
|
|
25
25
|
size: {
|
|
26
26
|
type: 'integer',
|
|
27
|
-
description: 'Size of the
|
|
27
|
+
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
29
|
jq_filter: {
|
|
30
30
|
type: 'string',
|
|
@@ -14,21 +14,21 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'create_compute_volumes',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Volume. Only data volumes can be created.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Volume. Only data volumes can be created.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
21
21
|
name: {
|
|
22
22
|
type: 'string',
|
|
23
|
-
description: 'Name of the
|
|
23
|
+
description: 'Name of the Volume.',
|
|
24
24
|
},
|
|
25
25
|
size: {
|
|
26
26
|
type: 'integer',
|
|
27
|
-
description: 'Size of the
|
|
27
|
+
description: 'Size of the Volume in GB.',
|
|
28
28
|
},
|
|
29
29
|
vm_id: {
|
|
30
30
|
type: 'string',
|
|
31
|
-
description: 'ID of the VM the
|
|
31
|
+
description: 'ID of the VM the Volume is attached to.',
|
|
32
32
|
},
|
|
33
33
|
jq_filter: {
|
|
34
34
|
type: 'string',
|
|
@@ -11,21 +11,21 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'create_compute_volumes',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Volume. Only data volumes can be created.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nCreate a Volume. Only data volumes can be created.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
18
18
|
name: {
|
|
19
19
|
type: 'string',
|
|
20
|
-
description: 'Name of the
|
|
20
|
+
description: 'Name of the Volume.',
|
|
21
21
|
},
|
|
22
22
|
size: {
|
|
23
23
|
type: 'integer',
|
|
24
|
-
description: 'Size of the
|
|
24
|
+
description: 'Size of the Volume in GB.',
|
|
25
25
|
},
|
|
26
26
|
vm_id: {
|
|
27
27
|
type: 'string',
|
|
28
|
-
description: 'ID of the VM the
|
|
28
|
+
description: 'ID of the VM the Volume is attached to.',
|
|
29
29
|
},
|
|
30
30
|
jq_filter: {
|
|
31
31
|
type: 'string',
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'delete_compute_volumes',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a Volume. Boot or data volumes can be deleted.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a Volume. Boot or data volumes can be deleted.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|
|
@@ -11,7 +11,7 @@ export const metadata = {
|
|
|
11
11
|
};
|
|
12
12
|
export const tool = {
|
|
13
13
|
name: 'delete_compute_volumes',
|
|
14
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a Volume. Boot or data volumes can be deleted.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
14
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nDelete a Volume. Boot or data volumes can be deleted.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/operation',\n $defs: {\n operation: {\n type: 'object',\n description: 'Operation details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Operation.'\n },\n created_at: {\n type: 'string',\n description: 'When the Operation was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/operation_kind'\n },\n resource_id: {\n type: 'string',\n description: 'ID of the resource that the Operation is acting on.'\n },\n status: {\n $ref: '#/$defs/operation_status'\n },\n type: {\n $ref: '#/$defs/operation_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Operation was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'resource_id',\n 'status',\n 'type',\n 'updated_at'\n ]\n },\n operation_kind: {\n type: 'string',\n description: 'Kind of Operation.',\n enum: [ 'vm',\n 'volume',\n 'vpc',\n 'firewall_rule'\n ]\n },\n operation_status: {\n type: 'string',\n description: 'Status of the Operation.',\n enum: [ 'pending',\n 'running',\n 'done',\n 'failed',\n 'unknown'\n ]\n },\n operation_type: {\n type: 'string',\n description: 'Type of Operation.',\n enum: [ 'create',\n 'update',\n 'delete',\n 'restart'\n ]\n }\n }\n}\n```",
|
|
15
15
|
inputSchema: {
|
|
16
16
|
type: 'object',
|
|
17
17
|
properties: {
|
|
@@ -14,7 +14,7 @@ exports.metadata = {
|
|
|
14
14
|
};
|
|
15
15
|
exports.tool = {
|
|
16
16
|
name: 'get_compute_volumes',
|
|
17
|
-
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet a Volume.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume',\n $defs: {\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the
|
|
17
|
+
description: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet a Volume.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/volume',\n $defs: {\n volume: {\n type: 'object',\n description: 'Volume details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Volume.'\n },\n created_at: {\n type: 'string',\n description: 'When the Volume was created.',\n format: 'date-time'\n },\n kind: {\n $ref: '#/$defs/volume_kind'\n },\n name: {\n type: 'string',\n description: 'Name of the Volume.'\n },\n size: {\n type: 'integer',\n description: 'Size of the Volume in GB.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n type: {\n $ref: '#/$defs/storage_type'\n },\n updated_at: {\n type: 'string',\n description: 'When the Volume was updated.',\n format: 'date-time'\n },\n vm_id: {\n type: 'string',\n description: 'ID of the VM the Volume is attached to.'\n },\n vm_name: {\n type: 'string',\n description: 'Name of the VM the Volume is attached to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'kind',\n 'name',\n 'size',\n 'status',\n 'type',\n 'updated_at',\n 'vm_id',\n 'vm_name'\n ]\n },\n volume_kind: {\n type: 'string',\n description: 'Volume kind.',\n enum: [ 'boot',\n 'data'\n ]\n },\n resource_status: {\n type: 'string',\n description: 'Status of the resource.',\n enum: [ 'pending',\n 'creating',\n 'updating',\n 'ready',\n 'deleting',\n 'deleted',\n 'error'\n ]\n },\n storage_type: {\n type: 'string',\n description: 'Storage type the Volume is using.',\n enum: [ 'nvme'\n ]\n }\n }\n}\n```",
|
|
18
18
|
inputSchema: {
|
|
19
19
|
type: 'object',
|
|
20
20
|
properties: {
|