@stigg/typescript-mcp 0.1.0-alpha.31 → 0.1.0-alpha.33

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
@@ -514,36 +514,6 @@ export const sdkMethods: SdkMethod[] = [
514
514
  httpMethod: 'patch',
515
515
  httpPath: '/api/v1/products/{id}',
516
516
  },
517
- {
518
- clientCallName: 'client.internal.beta.eventQueues.retrieve',
519
- fullyQualifiedName: 'internal.beta.eventQueues.retrieve',
520
- httpMethod: 'get',
521
- httpPath: '/internal/beta/event-queues/{queueName}',
522
- },
523
- {
524
- clientCallName: 'client.internal.beta.eventQueues.update',
525
- fullyQualifiedName: 'internal.beta.eventQueues.update',
526
- httpMethod: 'patch',
527
- httpPath: '/internal/beta/event-queues/{queueName}',
528
- },
529
- {
530
- clientCallName: 'client.internal.beta.eventQueues.list',
531
- fullyQualifiedName: 'internal.beta.eventQueues.list',
532
- httpMethod: 'get',
533
- httpPath: '/internal/beta/event-queues',
534
- },
535
- {
536
- clientCallName: 'client.internal.beta.eventQueues.delete',
537
- fullyQualifiedName: 'internal.beta.eventQueues.delete',
538
- httpMethod: 'delete',
539
- httpPath: '/internal/beta/event-queues/{queueName}',
540
- },
541
- {
542
- clientCallName: 'client.internal.beta.eventQueues.provision',
543
- fullyQualifiedName: 'internal.beta.eventQueues.provision',
544
- httpMethod: 'post',
545
- httpPath: '/internal/beta/event-queues/provision',
546
- },
547
517
  ];
548
518
 
549
519
  function allowedMethodsForCodeTool(options: McpOptions | undefined): SdkMethod[] | undefined {
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-alpha.31',
31
+ version: '0.1.0-alpha.33',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),