@stigg/typescript-mcp 0.1.0-beta.34 → 0.1.0-beta.36

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
@@ -370,6 +370,18 @@ export const sdkMethods: SdkMethod[] = [
370
370
  httpMethod: 'post',
371
371
  httpPath: '/api/v1/credits/custom-currencies/{currencyId}/unarchive',
372
372
  },
373
+ {
374
+ clientCallName: 'client.v1.credits.consumption.consume',
375
+ fullyQualifiedName: 'v1.credits.consumption.consume',
376
+ httpMethod: 'post',
377
+ httpPath: '/api/v1/credits/consumption',
378
+ },
379
+ {
380
+ clientCallName: 'client.v1.credits.consumption.consumeAsync',
381
+ fullyQualifiedName: 'v1.credits.consumption.consumeAsync',
382
+ httpMethod: 'post',
383
+ httpPath: '/api/v1/credits/consumption/async',
384
+ },
373
385
  {
374
386
  clientCallName: 'client.v1.features.archiveFeature',
375
387
  fullyQualifiedName: 'v1.features.archiveFeature',
package/src/server.ts CHANGED
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
28
28
  new McpServer(
29
29
  {
30
30
  name: 'stigg_typescript_api',
31
- version: '0.1.0-beta.34',
31
+ version: '0.1.0-beta.36',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),