@nirvana-labs/nirvana-mcp 1.63.2 → 1.65.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/src/methods.ts CHANGED
@@ -100,6 +100,18 @@ export const sdkMethods: SdkMethod[] = [
100
100
  httpMethod: 'post',
101
101
  httpPath: '/v1/organizations/{organization_id}/leave',
102
102
  },
103
+ {
104
+ clientCallName: 'client.organizations.memberships.list',
105
+ fullyQualifiedName: 'organizations.memberships.list',
106
+ httpMethod: 'get',
107
+ httpPath: '/v1/organizations/{organization_id}/memberships',
108
+ },
109
+ {
110
+ clientCallName: 'client.organizations.memberships.get',
111
+ fullyQualifiedName: 'organizations.memberships.get',
112
+ httpMethod: 'get',
113
+ httpPath: '/v1/organizations/{organization_id}/memberships/{membership_id}',
114
+ },
103
115
  {
104
116
  clientCallName: 'client.auditLogs.list',
105
117
  fullyQualifiedName: 'auditLogs.list',
@@ -562,6 +574,12 @@ export const sdkMethods: SdkMethod[] = [
562
574
  httpMethod: 'get',
563
575
  httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes',
564
576
  },
577
+ {
578
+ clientCallName: 'client.nks.clusters.pools.nodes.delete',
579
+ fullyQualifiedName: 'nks.clusters.pools.nodes.delete',
580
+ httpMethod: 'delete',
581
+ httpPath: '/v1/nks/clusters/{cluster_id}/pools/{pool_id}/nodes/{node_id}',
582
+ },
565
583
  {
566
584
  clientCallName: 'client.nks.clusters.pools.nodes.get',
567
585
  fullyQualifiedName: 'nks.clusters.pools.nodes.get',
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.63.2',
31
+ version: '1.65.0',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),