@nirvana-labs/nirvana-mcp 1.64.0 → 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',
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.64.0',
31
+ version: '1.65.0',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),