@nirvana-labs/nirvana-mcp 1.98.1 → 1.98.3

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/src/methods.ts CHANGED
@@ -340,6 +340,18 @@ export const sdkMethods: SdkMethod[] = [
340
340
  httpMethod: 'get',
341
341
  httpPath: '/v1/compute/vms/os_images',
342
342
  },
343
+ {
344
+ clientCallName: 'client.compute.vms.metrics.list',
345
+ fullyQualifiedName: 'compute.vms.metrics.list',
346
+ httpMethod: 'get',
347
+ httpPath: '/v1/compute/vms/{vm_id}/metrics',
348
+ },
349
+ {
350
+ clientCallName: 'client.compute.vms.metricDescriptors.list',
351
+ fullyQualifiedName: 'compute.vms.metricDescriptors.list',
352
+ httpMethod: 'get',
353
+ httpPath: '/v1/compute/metric_descriptors',
354
+ },
343
355
  {
344
356
  clientCallName: 'client.compute.volumes.create',
345
357
  fullyQualifiedName: 'compute.volumes.create',
package/src/server.ts CHANGED
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
28
28
  new McpServer(
29
29
  {
30
30
  name: 'nirvana_labs_nirvana_api',
31
- version: '1.98.0',
31
+ version: '1.98.2',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),