@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.
Files changed (206) hide show
  1. package/README.md +7 -0
  2. package/docs-search-tool.d.mts.map +1 -1
  3. package/docs-search-tool.d.ts.map +1 -1
  4. package/docs-search-tool.js +2 -1
  5. package/docs-search-tool.js.map +1 -1
  6. package/docs-search-tool.mjs +2 -1
  7. package/docs-search-tool.mjs.map +1 -1
  8. package/options.d.mts.map +1 -1
  9. package/options.d.ts.map +1 -1
  10. package/options.js +3 -2
  11. package/options.js.map +1 -1
  12. package/options.mjs +3 -2
  13. package/options.mjs.map +1 -1
  14. package/package.json +2 -2
  15. package/server.js +1 -1
  16. package/server.mjs +1 -1
  17. package/src/docs-search-tool.ts +4 -1
  18. package/src/options.ts +3 -2
  19. package/src/server.ts +1 -1
  20. package/src/tools/api-keys/create-api-keys.ts +11 -4
  21. package/src/tools/api-keys/get-api-keys.ts +1 -1
  22. package/src/tools/api-keys/list-api-keys.ts +1 -1
  23. package/src/tools/api-keys/update-api-keys.ts +9 -2
  24. package/src/tools/compute/vms/availability/create-vms-compute-availability.ts +3 -3
  25. package/src/tools/compute/vms/create-compute-vms.ts +4 -4
  26. package/src/tools/compute/vms/delete-compute-vms.ts +1 -1
  27. package/src/tools/compute/vms/restart-compute-vms.ts +1 -1
  28. package/src/tools/compute/vms/update-compute-vms.ts +1 -1
  29. package/src/tools/compute/vms/volumes/list-vms-compute-volumes.ts +1 -1
  30. package/src/tools/compute/volumes/availability/create-volumes-compute-availability.ts +3 -3
  31. package/src/tools/compute/volumes/availability/update-volumes-compute-availability.ts +2 -2
  32. package/src/tools/compute/volumes/create-compute-volumes.ts +4 -4
  33. package/src/tools/compute/volumes/delete-compute-volumes.ts +1 -1
  34. package/src/tools/compute/volumes/get-compute-volumes.ts +1 -1
  35. package/src/tools/compute/volumes/list-compute-volumes.ts +1 -1
  36. package/src/tools/compute/volumes/update-compute-volumes.ts +3 -3
  37. package/src/tools/connect/flux/create-connect-flux.ts +102 -0
  38. package/src/tools/connect/flux/delete-connect-flux.ts +47 -0
  39. package/src/tools/connect/flux/get-connect-flux.ts +1 -1
  40. package/src/tools/connect/flux/list-connect-flux.ts +1 -1
  41. package/src/tools/connect/flux/providers/list-flux-connect-providers.ts +44 -0
  42. package/src/tools/connect/flux/update-connect-flux.ts +49 -0
  43. package/src/tools/index.ts +8 -0
  44. package/src/tools/networking/firewall-rules/create-networking-firewall-rules.ts +6 -6
  45. package/src/tools/networking/firewall-rules/delete-networking-firewall-rules.ts +1 -1
  46. package/src/tools/networking/firewall-rules/get-networking-firewall-rules.ts +1 -1
  47. package/src/tools/networking/firewall-rules/list-networking-firewall-rules.ts +1 -1
  48. package/src/tools/networking/firewall-rules/update-networking-firewall-rules.ts +6 -6
  49. package/src/tools/networking/vpcs/create-networking-vpcs.ts +1 -1
  50. package/src/tools/networking/vpcs/delete-networking-vpcs.ts +1 -1
  51. package/src/tools/networking/vpcs/get-networking-vpcs.ts +1 -1
  52. package/src/tools/networking/vpcs/list-networking-vpcs.ts +1 -1
  53. package/src/tools/networking/vpcs/update-networking-vpcs.ts +1 -1
  54. package/src/tools/operations/get-operations.ts +1 -1
  55. package/src/tools/operations/list-operations.ts +1 -1
  56. package/src/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.ts +1 -1
  57. package/src/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.ts +1 -1
  58. package/src/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.ts +1 -1
  59. package/src/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.ts +1 -1
  60. package/src/tools/rpc-nodes/flex/get-rpc-nodes-flex.ts +1 -1
  61. package/src/tools/rpc-nodes/flex/list-rpc-nodes-flex.ts +1 -1
  62. package/src/tools/user/get-user.ts +1 -1
  63. package/tools/api-keys/create-api-keys.d.mts.map +1 -1
  64. package/tools/api-keys/create-api-keys.d.ts.map +1 -1
  65. package/tools/api-keys/create-api-keys.js +11 -4
  66. package/tools/api-keys/create-api-keys.js.map +1 -1
  67. package/tools/api-keys/create-api-keys.mjs +11 -4
  68. package/tools/api-keys/create-api-keys.mjs.map +1 -1
  69. package/tools/api-keys/get-api-keys.js +1 -1
  70. package/tools/api-keys/get-api-keys.js.map +1 -1
  71. package/tools/api-keys/get-api-keys.mjs +1 -1
  72. package/tools/api-keys/get-api-keys.mjs.map +1 -1
  73. package/tools/api-keys/list-api-keys.js +1 -1
  74. package/tools/api-keys/list-api-keys.js.map +1 -1
  75. package/tools/api-keys/list-api-keys.mjs +1 -1
  76. package/tools/api-keys/list-api-keys.mjs.map +1 -1
  77. package/tools/api-keys/update-api-keys.d.mts.map +1 -1
  78. package/tools/api-keys/update-api-keys.d.ts.map +1 -1
  79. package/tools/api-keys/update-api-keys.js +9 -2
  80. package/tools/api-keys/update-api-keys.js.map +1 -1
  81. package/tools/api-keys/update-api-keys.mjs +9 -2
  82. package/tools/api-keys/update-api-keys.mjs.map +1 -1
  83. package/tools/compute/vms/availability/create-vms-compute-availability.js +3 -3
  84. package/tools/compute/vms/availability/create-vms-compute-availability.mjs +3 -3
  85. package/tools/compute/vms/create-compute-vms.js +4 -4
  86. package/tools/compute/vms/create-compute-vms.mjs +4 -4
  87. package/tools/compute/vms/delete-compute-vms.js +1 -1
  88. package/tools/compute/vms/delete-compute-vms.mjs +1 -1
  89. package/tools/compute/vms/restart-compute-vms.js +1 -1
  90. package/tools/compute/vms/restart-compute-vms.mjs +1 -1
  91. package/tools/compute/vms/update-compute-vms.js +1 -1
  92. package/tools/compute/vms/update-compute-vms.mjs +1 -1
  93. package/tools/compute/vms/volumes/list-vms-compute-volumes.js +1 -1
  94. package/tools/compute/vms/volumes/list-vms-compute-volumes.mjs +1 -1
  95. package/tools/compute/volumes/availability/create-volumes-compute-availability.js +3 -3
  96. package/tools/compute/volumes/availability/create-volumes-compute-availability.mjs +3 -3
  97. package/tools/compute/volumes/availability/update-volumes-compute-availability.js +2 -2
  98. package/tools/compute/volumes/availability/update-volumes-compute-availability.mjs +2 -2
  99. package/tools/compute/volumes/create-compute-volumes.js +4 -4
  100. package/tools/compute/volumes/create-compute-volumes.mjs +4 -4
  101. package/tools/compute/volumes/delete-compute-volumes.js +1 -1
  102. package/tools/compute/volumes/delete-compute-volumes.mjs +1 -1
  103. package/tools/compute/volumes/get-compute-volumes.js +1 -1
  104. package/tools/compute/volumes/get-compute-volumes.mjs +1 -1
  105. package/tools/compute/volumes/list-compute-volumes.js +1 -1
  106. package/tools/compute/volumes/list-compute-volumes.mjs +1 -1
  107. package/tools/compute/volumes/update-compute-volumes.js +3 -3
  108. package/tools/compute/volumes/update-compute-volumes.mjs +3 -3
  109. package/tools/connect/flux/create-connect-flux.d.mts +45 -0
  110. package/tools/connect/flux/create-connect-flux.d.mts.map +1 -0
  111. package/tools/connect/flux/create-connect-flux.d.ts +45 -0
  112. package/tools/connect/flux/create-connect-flux.d.ts.map +1 -0
  113. package/tools/connect/flux/create-connect-flux.js +97 -0
  114. package/tools/connect/flux/create-connect-flux.js.map +1 -0
  115. package/tools/connect/flux/create-connect-flux.mjs +93 -0
  116. package/tools/connect/flux/create-connect-flux.mjs.map +1 -0
  117. package/tools/connect/flux/delete-connect-flux.d.mts +45 -0
  118. package/tools/connect/flux/delete-connect-flux.d.mts.map +1 -0
  119. package/tools/connect/flux/delete-connect-flux.d.ts +45 -0
  120. package/tools/connect/flux/delete-connect-flux.d.ts.map +1 -0
  121. package/tools/connect/flux/delete-connect-flux.js +42 -0
  122. package/tools/connect/flux/delete-connect-flux.js.map +1 -0
  123. package/tools/connect/flux/delete-connect-flux.mjs +38 -0
  124. package/tools/connect/flux/delete-connect-flux.mjs.map +1 -0
  125. package/tools/connect/flux/get-connect-flux.js +1 -1
  126. package/tools/connect/flux/get-connect-flux.js.map +1 -1
  127. package/tools/connect/flux/get-connect-flux.mjs +1 -1
  128. package/tools/connect/flux/get-connect-flux.mjs.map +1 -1
  129. package/tools/connect/flux/list-connect-flux.js +1 -1
  130. package/tools/connect/flux/list-connect-flux.js.map +1 -1
  131. package/tools/connect/flux/list-connect-flux.mjs +1 -1
  132. package/tools/connect/flux/list-connect-flux.mjs.map +1 -1
  133. package/tools/connect/flux/providers/list-flux-connect-providers.d.mts +45 -0
  134. package/tools/connect/flux/providers/list-flux-connect-providers.d.mts.map +1 -0
  135. package/tools/connect/flux/providers/list-flux-connect-providers.d.ts +45 -0
  136. package/tools/connect/flux/providers/list-flux-connect-providers.d.ts.map +1 -0
  137. package/tools/connect/flux/providers/list-flux-connect-providers.js +39 -0
  138. package/tools/connect/flux/providers/list-flux-connect-providers.js.map +1 -0
  139. package/tools/connect/flux/providers/list-flux-connect-providers.mjs +35 -0
  140. package/tools/connect/flux/providers/list-flux-connect-providers.mjs.map +1 -0
  141. package/tools/connect/flux/update-connect-flux.d.mts +45 -0
  142. package/tools/connect/flux/update-connect-flux.d.mts.map +1 -0
  143. package/tools/connect/flux/update-connect-flux.d.ts +45 -0
  144. package/tools/connect/flux/update-connect-flux.d.ts.map +1 -0
  145. package/tools/connect/flux/update-connect-flux.js +44 -0
  146. package/tools/connect/flux/update-connect-flux.js.map +1 -0
  147. package/tools/connect/flux/update-connect-flux.mjs +40 -0
  148. package/tools/connect/flux/update-connect-flux.mjs.map +1 -0
  149. package/tools/index.d.mts.map +1 -1
  150. package/tools/index.d.ts.map +1 -1
  151. package/tools/index.js +8 -0
  152. package/tools/index.js.map +1 -1
  153. package/tools/index.mjs +8 -0
  154. package/tools/index.mjs.map +1 -1
  155. package/tools/networking/firewall-rules/create-networking-firewall-rules.js +6 -6
  156. package/tools/networking/firewall-rules/create-networking-firewall-rules.mjs +6 -6
  157. package/tools/networking/firewall-rules/delete-networking-firewall-rules.js +1 -1
  158. package/tools/networking/firewall-rules/delete-networking-firewall-rules.mjs +1 -1
  159. package/tools/networking/firewall-rules/get-networking-firewall-rules.js +1 -1
  160. package/tools/networking/firewall-rules/get-networking-firewall-rules.mjs +1 -1
  161. package/tools/networking/firewall-rules/list-networking-firewall-rules.js +1 -1
  162. package/tools/networking/firewall-rules/list-networking-firewall-rules.mjs +1 -1
  163. package/tools/networking/firewall-rules/update-networking-firewall-rules.js +6 -6
  164. package/tools/networking/firewall-rules/update-networking-firewall-rules.mjs +6 -6
  165. package/tools/networking/vpcs/create-networking-vpcs.js +1 -1
  166. package/tools/networking/vpcs/create-networking-vpcs.mjs +1 -1
  167. package/tools/networking/vpcs/delete-networking-vpcs.js +1 -1
  168. package/tools/networking/vpcs/delete-networking-vpcs.mjs +1 -1
  169. package/tools/networking/vpcs/get-networking-vpcs.js +1 -1
  170. package/tools/networking/vpcs/get-networking-vpcs.mjs +1 -1
  171. package/tools/networking/vpcs/list-networking-vpcs.js +1 -1
  172. package/tools/networking/vpcs/list-networking-vpcs.mjs +1 -1
  173. package/tools/networking/vpcs/update-networking-vpcs.js +1 -1
  174. package/tools/networking/vpcs/update-networking-vpcs.mjs +1 -1
  175. package/tools/operations/get-operations.js +1 -1
  176. package/tools/operations/get-operations.mjs +1 -1
  177. package/tools/operations/list-operations.js +1 -1
  178. package/tools/operations/list-operations.mjs +1 -1
  179. package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js +1 -1
  180. package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js.map +1 -1
  181. package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs +1 -1
  182. package/tools/rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs.map +1 -1
  183. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js +1 -1
  184. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.js.map +1 -1
  185. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs +1 -1
  186. package/tools/rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs.map +1 -1
  187. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js +1 -1
  188. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.js.map +1 -1
  189. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs +1 -1
  190. package/tools/rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs.map +1 -1
  191. package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js +1 -1
  192. package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.js.map +1 -1
  193. package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs +1 -1
  194. package/tools/rpc-nodes/flex/blockchains/list-flex-rpc-nodes-blockchains.mjs.map +1 -1
  195. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js +1 -1
  196. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.js.map +1 -1
  197. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs +1 -1
  198. package/tools/rpc-nodes/flex/get-rpc-nodes-flex.mjs.map +1 -1
  199. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js +1 -1
  200. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.js.map +1 -1
  201. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs +1 -1
  202. package/tools/rpc-nodes/flex/list-rpc-nodes-flex.mjs.map +1 -1
  203. package/tools/user/get-user.js +1 -1
  204. package/tools/user/get-user.js.map +1 -1
  205. package/tools/user/get-user.mjs +1 -1
  206. package/tools/user/get-user.mjs.map +1 -1
package/tools/index.js CHANGED
@@ -49,8 +49,12 @@ const list_flex_rpc_nodes_blockchains_1 = __importDefault(require("./rpc-nodes/f
49
49
  const list_rpc_nodes_dedicated_1 = __importDefault(require("./rpc-nodes/dedicated/list-rpc-nodes-dedicated.js"));
50
50
  const get_rpc_nodes_dedicated_1 = __importDefault(require("./rpc-nodes/dedicated/get-rpc-nodes-dedicated.js"));
51
51
  const list_dedicated_rpc_nodes_blockchains_1 = __importDefault(require("./rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.js"));
52
+ const create_connect_flux_1 = __importDefault(require("./connect/flux/create-connect-flux.js"));
53
+ const update_connect_flux_1 = __importDefault(require("./connect/flux/update-connect-flux.js"));
52
54
  const list_connect_flux_1 = __importDefault(require("./connect/flux/list-connect-flux.js"));
55
+ const delete_connect_flux_1 = __importDefault(require("./connect/flux/delete-connect-flux.js"));
53
56
  const get_connect_flux_1 = __importDefault(require("./connect/flux/get-connect-flux.js"));
57
+ const list_flux_connect_providers_1 = __importDefault(require("./connect/flux/providers/list-flux-connect-providers.js"));
54
58
  const list_registry_vektor_assets_1 = __importDefault(require("./vektor/registry/assets/list-registry-vektor-assets.js"));
55
59
  const list_registry_vektor_blockchains_1 = __importDefault(require("./vektor/registry/blockchains/list-registry-vektor-blockchains.js"));
56
60
  const list_registry_vektor_venues_1 = __importDefault(require("./vektor/registry/venues/list-registry-vektor-venues.js"));
@@ -147,8 +151,12 @@ addEndpoint(list_flex_rpc_nodes_blockchains_1.default);
147
151
  addEndpoint(list_rpc_nodes_dedicated_1.default);
148
152
  addEndpoint(get_rpc_nodes_dedicated_1.default);
149
153
  addEndpoint(list_dedicated_rpc_nodes_blockchains_1.default);
154
+ addEndpoint(create_connect_flux_1.default);
155
+ addEndpoint(update_connect_flux_1.default);
150
156
  addEndpoint(list_connect_flux_1.default);
157
+ addEndpoint(delete_connect_flux_1.default);
151
158
  addEndpoint(get_connect_flux_1.default);
159
+ addEndpoint(list_flux_connect_providers_1.default);
152
160
  addEndpoint(list_registry_vektor_assets_1.default);
153
161
  addEndpoint(list_registry_vektor_blockchains_1.default);
154
162
  addEndpoint(list_registry_vektor_venues_1.default);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
package/tools/index.mjs CHANGED
@@ -42,8 +42,12 @@ import list_flex_rpc_nodes_blockchains from "./rpc-nodes/flex/blockchains/list-f
42
42
  import list_rpc_nodes_dedicated from "./rpc-nodes/dedicated/list-rpc-nodes-dedicated.mjs";
43
43
  import get_rpc_nodes_dedicated from "./rpc-nodes/dedicated/get-rpc-nodes-dedicated.mjs";
44
44
  import list_dedicated_rpc_nodes_blockchains from "./rpc-nodes/dedicated/blockchains/list-dedicated-rpc-nodes-blockchains.mjs";
45
+ import create_connect_flux from "./connect/flux/create-connect-flux.mjs";
46
+ import update_connect_flux from "./connect/flux/update-connect-flux.mjs";
45
47
  import list_connect_flux from "./connect/flux/list-connect-flux.mjs";
48
+ import delete_connect_flux from "./connect/flux/delete-connect-flux.mjs";
46
49
  import get_connect_flux from "./connect/flux/get-connect-flux.mjs";
50
+ import list_flux_connect_providers from "./connect/flux/providers/list-flux-connect-providers.mjs";
47
51
  import list_registry_vektor_assets from "./vektor/registry/assets/list-registry-vektor-assets.mjs";
48
52
  import list_registry_vektor_blockchains from "./vektor/registry/blockchains/list-registry-vektor-blockchains.mjs";
49
53
  import list_registry_vektor_venues from "./vektor/registry/venues/list-registry-vektor-venues.mjs";
@@ -140,8 +144,12 @@ addEndpoint(list_flex_rpc_nodes_blockchains);
140
144
  addEndpoint(list_rpc_nodes_dedicated);
141
145
  addEndpoint(get_rpc_nodes_dedicated);
142
146
  addEndpoint(list_dedicated_rpc_nodes_blockchains);
147
+ addEndpoint(create_connect_flux);
148
+ addEndpoint(update_connect_flux);
143
149
  addEndpoint(list_connect_flux);
150
+ addEndpoint(delete_connect_flux);
144
151
  addEndpoint(get_connect_flux);
152
+ addEndpoint(list_flux_connect_providers);
145
153
  addEndpoint(list_registry_vektor_assets);
146
154
  addEndpoint(list_registry_vektor_blockchains);
147
155
  addEndpoint(list_registry_vektor_venues);
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/tools/index.ts"],"names":[],"mappings":"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"}
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'create_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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: {
@@ -23,27 +23,27 @@ exports.tool = {
23
23
  },
24
24
  destination_address: {
25
25
  type: 'string',
26
- description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.',
26
+ description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.',
27
27
  },
28
28
  destination_ports: {
29
29
  type: 'array',
30
- description: 'Destination ports of the firewall rule.',
30
+ description: 'Destination ports of the Firewall Rule.',
31
31
  items: {
32
32
  type: 'string',
33
33
  },
34
34
  },
35
35
  name: {
36
36
  type: 'string',
37
- description: 'Name of the firewall rule.',
37
+ description: 'Name of the Firewall Rule.',
38
38
  },
39
39
  protocol: {
40
40
  type: 'string',
41
- description: 'Protocol of the firewall rule.',
41
+ description: 'Protocol of the Firewall Rule.',
42
42
  enum: ['tcp', 'udp'],
43
43
  },
44
44
  source_address: {
45
45
  type: 'string',
46
- description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
46
+ description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
47
47
  },
48
48
  jq_filter: {
49
49
  type: 'string',
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'create_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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: {
@@ -20,27 +20,27 @@ export const tool = {
20
20
  },
21
21
  destination_address: {
22
22
  type: 'string',
23
- description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.',
23
+ description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.',
24
24
  },
25
25
  destination_ports: {
26
26
  type: 'array',
27
- description: 'Destination ports of the firewall rule.',
27
+ description: 'Destination ports of the Firewall Rule.',
28
28
  items: {
29
29
  type: 'string',
30
30
  },
31
31
  },
32
32
  name: {
33
33
  type: 'string',
34
- description: 'Name of the firewall rule.',
34
+ description: 'Name of the Firewall Rule.',
35
35
  },
36
36
  protocol: {
37
37
  type: 'string',
38
- description: 'Protocol of the firewall rule.',
38
+ description: 'Protocol of the Firewall Rule.',
39
39
  enum: ['tcp', 'udp'],
40
40
  },
41
41
  source_address: {
42
42
  type: 'string',
43
- description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
43
+ description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
44
44
  },
45
45
  jq_filter: {
46
46
  type: 'string',
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'delete_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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_networking_firewall_rules',
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 details about a firewall rule\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule',\n $defs: {\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the firewall rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the firewall rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the firewall rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the firewall rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the firewall rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the firewall rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the firewall rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\n}\n```",
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 details about a firewall rule\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule',\n $defs: {\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Firewall Rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the Firewall Rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the Firewall Rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the Firewall Rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the Firewall Rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the Firewall Rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the Firewall Rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\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: 'get_networking_firewall_rules',
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\nGet details about a firewall rule\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule',\n $defs: {\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the firewall rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the firewall rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the firewall rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the firewall rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the firewall rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the firewall rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the firewall rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\n}\n```",
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\nGet details about a firewall rule\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule',\n $defs: {\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Firewall Rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the Firewall Rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the Firewall Rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the Firewall Rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the Firewall Rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the Firewall Rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the Firewall Rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\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_networking_firewall_rules',
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 all firewall rules\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule_list',\n $defs: {\n firewall_rule_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/firewall_rule'\n }\n }\n },\n required: [ 'items'\n ]\n },\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the firewall rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the firewall rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the firewall rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the firewall rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the firewall rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the firewall rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the firewall rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\n}\n```",
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 all firewall rules\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule_list',\n $defs: {\n firewall_rule_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/firewall_rule'\n }\n }\n },\n required: [ 'items'\n ]\n },\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Firewall Rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the Firewall Rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the Firewall Rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the Firewall Rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the Firewall Rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the Firewall Rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the Firewall Rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\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_networking_firewall_rules',
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 all firewall rules\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule_list',\n $defs: {\n firewall_rule_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/firewall_rule'\n }\n }\n },\n required: [ 'items'\n ]\n },\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the firewall rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the firewall rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the firewall rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the firewall rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the firewall rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the firewall rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the firewall rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\n}\n```",
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 all firewall rules\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/firewall_rule_list',\n $defs: {\n firewall_rule_list: {\n type: 'object',\n properties: {\n items: {\n type: 'array',\n items: {\n $ref: '#/$defs/firewall_rule'\n }\n }\n },\n required: [ 'items'\n ]\n },\n firewall_rule: {\n type: 'object',\n description: 'Firewall rule details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Firewall Rule.'\n },\n created_at: {\n type: 'string',\n description: 'When the Firewall Rule was created.',\n format: 'date-time'\n },\n destination_address: {\n type: 'string',\n description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.'\n },\n destination_ports: {\n type: 'array',\n description: 'Destination ports of the Firewall Rule.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the Firewall Rule.'\n },\n protocol: {\n type: 'string',\n description: 'Protocol of the Firewall Rule.',\n enum: [ 'tcp',\n 'udp'\n ]\n },\n source_address: {\n type: 'string',\n description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n updated_at: {\n type: 'string',\n description: 'When the Firewall Rule was updated.',\n format: 'date-time'\n },\n vpc_id: {\n type: 'string',\n description: 'ID of the VPC the Firewall Rule belongs to.'\n }\n },\n required: [ 'id',\n 'created_at',\n 'destination_address',\n 'destination_ports',\n 'name',\n 'protocol',\n 'source_address',\n 'status',\n 'updated_at',\n 'vpc_id'\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 }\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_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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: {
@@ -26,27 +26,27 @@ exports.tool = {
26
26
  },
27
27
  destination_address: {
28
28
  type: 'string',
29
- description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.',
29
+ description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.',
30
30
  },
31
31
  destination_ports: {
32
32
  type: 'array',
33
- description: 'Destination ports of the firewall rule.',
33
+ description: 'Destination ports of the Firewall Rule.',
34
34
  items: {
35
35
  type: 'string',
36
36
  },
37
37
  },
38
38
  name: {
39
39
  type: 'string',
40
- description: 'Name of the firewall rule.',
40
+ description: 'Name of the Firewall Rule.',
41
41
  },
42
42
  protocol: {
43
43
  type: 'string',
44
- description: 'Protocol of the firewall rule.',
44
+ description: 'Protocol of the Firewall Rule.',
45
45
  enum: ['tcp', 'udp'],
46
46
  },
47
47
  source_address: {
48
48
  type: 'string',
49
- description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
49
+ description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
50
50
  },
51
51
  jq_filter: {
52
52
  type: 'string',
@@ -11,7 +11,7 @@ export const metadata = {
11
11
  };
12
12
  export const tool = {
13
13
  name: 'update_networking_firewall_rules',
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 firewall rule\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```",
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 firewall rule\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: {
@@ -23,27 +23,27 @@ export const tool = {
23
23
  },
24
24
  destination_address: {
25
25
  type: 'string',
26
- description: 'Destination address of the firewall rule. Either VPC CIDR or VM in VPC.',
26
+ description: 'Destination address of the Firewall Rule. Either VPC CIDR or VM in VPC.',
27
27
  },
28
28
  destination_ports: {
29
29
  type: 'array',
30
- description: 'Destination ports of the firewall rule.',
30
+ description: 'Destination ports of the Firewall Rule.',
31
31
  items: {
32
32
  type: 'string',
33
33
  },
34
34
  },
35
35
  name: {
36
36
  type: 'string',
37
- description: 'Name of the firewall rule.',
37
+ description: 'Name of the Firewall Rule.',
38
38
  },
39
39
  protocol: {
40
40
  type: 'string',
41
- description: 'Protocol of the firewall rule.',
41
+ description: 'Protocol of the Firewall Rule.',
42
42
  enum: ['tcp', 'udp'],
43
43
  },
44
44
  source_address: {
45
45
  type: 'string',
46
- description: 'Source address of the firewall rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
46
+ description: 'Source address of the Firewall Rule. Address of 0.0.0.0 requires a CIDR mask of 0.',
47
47
  },
48
48
  jq_filter: {
49
49
  type: 'string',
@@ -14,7 +14,7 @@ exports.metadata = {
14
14
  };
15
15
  exports.tool = {
16
16
  name: 'create_networking_vpcs',
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 VPC\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```",
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 VPC\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: 'create_networking_vpcs',
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 VPC\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```",
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 VPC\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: 'delete_networking_vpcs',
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 VPC\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```",
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 VPC\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_networking_vpcs',
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 VPC\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```",
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 VPC\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_networking_vpcs',
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 details about a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc',\n $defs: {\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the firewall rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\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 subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\n ]\n }\n }\n}\n```",
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 details about a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc',\n $defs: {\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the Firewall Rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\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 subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the Subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the Subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the Subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the Subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\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: 'get_networking_vpcs',
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\nGet details about a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc',\n $defs: {\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the firewall rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\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 subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\n ]\n }\n }\n}\n```",
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\nGet details about a VPC\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/vpc',\n $defs: {\n vpc: {\n type: 'object',\n description: 'VPC details.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the VPC.'\n },\n created_at: {\n type: 'string',\n description: 'When the VPC was created.',\n format: 'date-time'\n },\n firewall_rule_ids: {\n type: 'array',\n description: 'IDs of the Firewall Rules associated with the VPC.',\n items: {\n type: 'string'\n }\n },\n name: {\n type: 'string',\n description: 'Name of the VPC.'\n },\n region: {\n $ref: '#/$defs/region_name'\n },\n status: {\n $ref: '#/$defs/resource_status'\n },\n subnet: {\n $ref: '#/$defs/subnet'\n },\n updated_at: {\n type: 'string',\n description: 'When the VPC was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'created_at',\n 'firewall_rule_ids',\n 'name',\n 'region',\n 'status',\n 'subnet',\n 'updated_at'\n ]\n },\n region_name: {\n type: 'string',\n description: 'Region the resource is in.',\n enum: [ 'us-sea-1',\n 'us-sva-1',\n 'us-chi-1',\n 'us-wdc-1',\n 'eu-frk-1',\n 'ap-sin-1',\n 'ap-seo-1',\n 'ap-tyo-1'\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 subnet: {\n type: 'object',\n description: 'Subnet of the VPC.',\n properties: {\n id: {\n type: 'string',\n description: 'Unique identifier for the Subnet.'\n },\n cidr: {\n type: 'string',\n description: 'CIDR block for the Subnet.'\n },\n created_at: {\n type: 'string',\n description: 'When the Subnet was created.',\n format: 'date-time'\n },\n name: {\n type: 'string',\n description: 'Name of the Subnet.'\n },\n updated_at: {\n type: 'string',\n description: 'When the Subnet was updated.',\n format: 'date-time'\n }\n },\n required: [ 'id',\n 'cidr',\n 'created_at',\n 'name',\n 'updated_at'\n ]\n }\n }\n}\n```",
15
15
  inputSchema: {
16
16
  type: 'object',
17
17
  properties: {