@settlemint/sdk-mcp 2.4.0-pr7dabb22d → 2.4.0-pr8612ea0b

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/dist/mcp.js CHANGED
@@ -73554,9 +73554,9 @@ ${formattedErrors}`);
73554
73554
  throw error$37;
73555
73555
  }
73556
73556
  }
73557
- var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.+$/);
73558
- var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.+$/);
73559
- var AccessTokenSchema = string$1().regex(/^(sm_pat_.+|sm_aat_.+)$/);
73557
+ var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.*$/);
73558
+ var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
73559
+ var AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
73560
73560
  function tryParseJson(value, defaultValue = null) {
73561
73561
  try {
73562
73562
  const parsed = JSON.parse(value);
@@ -90295,9 +90295,9 @@ ${formattedErrors}`);
90295
90295
  throw error$372;
90296
90296
  }
90297
90297
  }
90298
- var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_.+$/);
90299
- var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_.+$/);
90300
- var AccessTokenSchema2 = string$12().regex(/^(sm_pat_.+|sm_aat_.+)$/);
90298
+ var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_.*$/);
90299
+ var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_.*$/);
90300
+ var AccessTokenSchema2 = string$12().regex(/^sm_pat_.*|sm_aat_.*$/);
90301
90301
  function tryParseJson2(value, defaultValue = null) {
90302
90302
  try {
90303
90303
  const parsed = JSON.parse(value);
@@ -90389,7 +90389,7 @@ var {
90389
90389
  var package_default = {
90390
90390
  name: "@settlemint/sdk-mcp",
90391
90391
  description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
90392
- version: "2.4.0-pr7dabb22d",
90392
+ version: "2.4.0-pr8612ea0b",
90393
90393
  type: "module",
90394
90394
  private: false,
90395
90395
  license: "FSL-1.1-MIT",
@@ -90430,9 +90430,9 @@ var package_default = {
90430
90430
  dependencies: {
90431
90431
  "@graphql-tools/load": "8.1.0",
90432
90432
  "@graphql-tools/url-loader": "8.0.31",
90433
- "@modelcontextprotocol/sdk": "1.13.1",
90434
- "@settlemint/sdk-js": "2.4.0-pr7dabb22d",
90435
- "@settlemint/sdk-utils": "2.4.0-pr7dabb22d",
90433
+ "@modelcontextprotocol/sdk": "1.13.0",
90434
+ "@settlemint/sdk-js": "2.4.0-pr8612ea0b",
90435
+ "@settlemint/sdk-utils": "2.4.0-pr8612ea0b",
90436
90436
  "@commander-js/extra-typings": "14.0.0",
90437
90437
  commander: "14.0.0",
90438
90438
  zod: "^3.25.0"
@@ -103894,20 +103894,6 @@ var restartBlockchainNetwork = graphql(`
103894
103894
  }
103895
103895
  }
103896
103896
  `, [BlockchainNetworkFragment]);
103897
- var pauseBlockchainNetwork = graphql(`
103898
- mutation PauseBlockchainNetwork($uniqueName: String!) {
103899
- pauseBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103900
- ...BlockchainNetwork
103901
- }
103902
- }
103903
- `, [BlockchainNetworkFragment]);
103904
- var resumeBlockchainNetwork = graphql(`
103905
- mutation ResumeBlockchainNetwork($uniqueName: String!) {
103906
- resumeBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103907
- ...BlockchainNetwork
103908
- }
103909
- }
103910
- `, [BlockchainNetworkFragment]);
103911
103897
  var blockchainNetworkList = (gqlClient) => {
103912
103898
  return async (applicationUniqueName) => {
103913
103899
  const { blockchainNetworksByUniqueName: { items } } = await gqlClient.request(getBlockchainNetworks, { applicationUniqueName });
@@ -103942,14 +103928,6 @@ var blockchainNetworkRestart = (gqlClient) => async (blockchainNetworkUniqueName
103942
103928
  const { restartBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(restartBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103943
103929
  return blockchainNetwork;
103944
103930
  };
103945
- var blockchainNetworkPause = (gqlClient) => async (blockchainNetworkUniqueName) => {
103946
- const { pauseBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(pauseBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103947
- return blockchainNetwork;
103948
- };
103949
- var blockchainNetworkResume = (gqlClient) => async (blockchainNetworkUniqueName) => {
103950
- const { resumeBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(resumeBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103951
- return blockchainNetwork;
103952
- };
103953
103931
  var BlockchainNodeFragment = graphql(`
103954
103932
  fragment BlockchainNode on BlockchainNode {
103955
103933
  __typename
@@ -104083,20 +104061,6 @@ var restartBlockchainNode = graphql(`
104083
104061
  }
104084
104062
  }
104085
104063
  `, [BlockchainNodeFragment]);
104086
- var pauseBlockchainNode = graphql(`
104087
- mutation PauseBlockchainNode($uniqueName: String!) {
104088
- pauseBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104089
- ...BlockchainNode
104090
- }
104091
- }
104092
- `, [BlockchainNodeFragment]);
104093
- var resumeBlockchainNode = graphql(`
104094
- mutation ResumeBlockchainNode($uniqueName: String!) {
104095
- resumeBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104096
- ...BlockchainNode
104097
- }
104098
- }
104099
- `, [BlockchainNodeFragment]);
104100
104064
  var blockchainNodeList = (gqlClient) => {
104101
104065
  return async (applicationUniqueName) => {
104102
104066
  const { blockchainNodesByUniqueName: { items } } = await gqlClient.request(getBlockchainNodes, { applicationUniqueName });
@@ -104125,14 +104089,6 @@ var blockchainNodeRestart = (gqlClient) => async (blockchainNodeUniqueName) => {
104125
104089
  const { restartBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(restartBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104126
104090
  return blockchainNode;
104127
104091
  };
104128
- var blockchainNodePause = (gqlClient) => async (blockchainNodeUniqueName) => {
104129
- const { pauseBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(pauseBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104130
- return blockchainNode;
104131
- };
104132
- var blockchainNodeResume = (gqlClient) => async (blockchainNodeUniqueName) => {
104133
- const { resumeBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(resumeBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104134
- return blockchainNode;
104135
- };
104136
104092
  var CustomDeploymentFragment = graphql(`
104137
104093
  fragment CustomDeployment on CustomDeployment {
104138
104094
  id
@@ -104215,20 +104171,6 @@ var restartCustomDeployment = graphql(`
104215
104171
  }
104216
104172
  }
104217
104173
  `, [CustomDeploymentFragment]);
104218
- var pauseCustomDeployment = graphql(`
104219
- mutation PauseCustomDeployment($uniqueName: String!) {
104220
- pauseCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104221
- ...CustomDeployment
104222
- }
104223
- }
104224
- `, [CustomDeploymentFragment]);
104225
- var resumeCustomDeployment = graphql(`
104226
- mutation ResumeCustomDeployment($uniqueName: String!) {
104227
- resumeCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104228
- ...CustomDeployment
104229
- }
104230
- }
104231
- `, [CustomDeploymentFragment]);
104232
104174
  var customdeploymentList = (gqlClient) => {
104233
104175
  return async (applicationUniqueName) => {
104234
104176
  const { customDeploymentsByUniqueName: { items } } = await gqlClient.request(getCustomDeployments, { applicationUniqueName });
@@ -104265,14 +104207,6 @@ var customDeploymentRestart = (gqlClient) => async (customDeploymentUniqueName)
104265
104207
  const { restartCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(restartCustomDeployment, { uniqueName: customDeploymentUniqueName });
104266
104208
  return customDeployment;
104267
104209
  };
104268
- var customDeploymentPause = (gqlClient) => async (customDeploymentUniqueName) => {
104269
- const { pauseCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(pauseCustomDeployment, { uniqueName: customDeploymentUniqueName });
104270
- return customDeployment;
104271
- };
104272
- var customDeploymentResume = (gqlClient) => async (customDeploymentUniqueName) => {
104273
- const { resumeCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(resumeCustomDeployment, { uniqueName: customDeploymentUniqueName });
104274
- return customDeployment;
104275
- };
104276
104210
  var getFoundryEnvConfig = graphql(`
104277
104211
  query GetFoundryEnvConfig($blockchainNodeUniqueName: String!) {
104278
104212
  foundryEnvConfigByUniqueName(blockchainNodeUniqueName: $blockchainNodeUniqueName)
@@ -104349,20 +104283,6 @@ var restartLoadBalancer = graphql(`
104349
104283
  }
104350
104284
  }
104351
104285
  `, [LoadBalancerFragment]);
104352
- var pauseLoadBalancer = graphql(`
104353
- mutation PauseLoadBalancer($uniqueName: String!) {
104354
- pauseLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104355
- ...LoadBalancer
104356
- }
104357
- }
104358
- `, [LoadBalancerFragment]);
104359
- var resumeLoadBalancer = graphql(`
104360
- mutation ResumeLoadBalancer($uniqueName: String!) {
104361
- resumeLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104362
- ...LoadBalancer
104363
- }
104364
- }
104365
- `, [LoadBalancerFragment]);
104366
104286
  var loadBalancerRead = (gqlClient) => {
104367
104287
  return async (loadBalancerUniqueName) => {
104368
104288
  const { loadBalancerByUniqueName: loadBalancer } = await gqlClient.request(getLoadBalancer, { uniqueName: loadBalancerUniqueName });
@@ -104396,14 +104316,6 @@ var loadBalancerRestart = (gqlClient) => async (loadBalancerUniqueName) => {
104396
104316
  const { restartLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(restartLoadBalancer, { uniqueName: loadBalancerUniqueName });
104397
104317
  return loadBalancer;
104398
104318
  };
104399
- var loadBalancerPause = (gqlClient) => async (loadBalancerUniqueName) => {
104400
- const { pauseLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(pauseLoadBalancer, { uniqueName: loadBalancerUniqueName });
104401
- return loadBalancer;
104402
- };
104403
- var loadBalancerResume = (gqlClient) => async (loadBalancerUniqueName) => {
104404
- const { resumeLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(resumeLoadBalancer, { uniqueName: loadBalancerUniqueName });
104405
- return loadBalancer;
104406
- };
104407
104319
  var InsightsFragment = graphql(`
104408
104320
  fragment Insights on Insights {
104409
104321
  __typename
@@ -104477,20 +104389,6 @@ var restartInsights = graphql(`
104477
104389
  }
104478
104390
  }
104479
104391
  `, [InsightsFragment]);
104480
- var pauseInsights = graphql(`
104481
- mutation PauseInsights($uniqueName: String!) {
104482
- pauseInsightsByUniqueName(uniqueName: $uniqueName) {
104483
- ...Insights
104484
- }
104485
- }
104486
- `, [InsightsFragment]);
104487
- var resumeInsights = graphql(`
104488
- mutation ResumeInsights($uniqueName: String!) {
104489
- resumeInsightsByUniqueName(uniqueName: $uniqueName) {
104490
- ...Insights
104491
- }
104492
- }
104493
- `, [InsightsFragment]);
104494
104392
  var insightsList = (gqlClient) => {
104495
104393
  return async (applicationUniqueName) => {
104496
104394
  const { insightsListByUniqueName: { items } } = await gqlClient.request(getInsights, { applicationUniqueName });
@@ -104524,14 +104422,6 @@ var insightsRestart = (gqlClient) => async (insightsUniqueName) => {
104524
104422
  const { restartInsightsByUniqueName: insights } = await gqlClient.request(restartInsights, { uniqueName: insightsUniqueName });
104525
104423
  return insights;
104526
104424
  };
104527
- var insightsPause = (gqlClient) => async (insightsUniqueName) => {
104528
- const { pauseInsightsByUniqueName: insights } = await gqlClient.request(pauseInsights, { uniqueName: insightsUniqueName });
104529
- return insights;
104530
- };
104531
- var insightsResume = (gqlClient) => async (insightsUniqueName) => {
104532
- const { resumeInsightsByUniqueName: insights } = await gqlClient.request(resumeInsights, { uniqueName: insightsUniqueName });
104533
- return insights;
104534
- };
104535
104425
  var IntegrationFragment = graphql(`
104536
104426
  fragment Integration on Integration {
104537
104427
  __typename
@@ -104601,20 +104491,6 @@ var restartIntegrationTool = graphql(`
104601
104491
  }
104602
104492
  }
104603
104493
  `, [IntegrationFragment]);
104604
- var pauseIntegrationTool = graphql(`
104605
- mutation PauseIntegrationTool($uniqueName: String!) {
104606
- pauseIntegrationByUniqueName(uniqueName: $uniqueName) {
104607
- ...Integration
104608
- }
104609
- }
104610
- `, [IntegrationFragment]);
104611
- var resumeIntegrationTool = graphql(`
104612
- mutation ResumeIntegrationTool($uniqueName: String!) {
104613
- resumeIntegrationByUniqueName(uniqueName: $uniqueName) {
104614
- ...Integration
104615
- }
104616
- }
104617
- `, [IntegrationFragment]);
104618
104494
  var integrationToolList = (gqlClient) => {
104619
104495
  return async (applicationUniqueName) => {
104620
104496
  const { integrationsByUniqueName: { items } } = await gqlClient.request(getIntegrations, { applicationUniqueName });
@@ -104642,14 +104518,6 @@ var integrationToolRestart = (gqlClient) => async (integrationUniqueName) => {
104642
104518
  const { restartIntegrationByUniqueName: integration } = await gqlClient.request(restartIntegrationTool, { uniqueName: integrationUniqueName });
104643
104519
  return integration;
104644
104520
  };
104645
- var integrationToolPause = (gqlClient) => async (integrationUniqueName) => {
104646
- const { pauseIntegrationByUniqueName: integration } = await gqlClient.request(pauseIntegrationTool, { uniqueName: integrationUniqueName });
104647
- return integration;
104648
- };
104649
- var integrationToolResume = (gqlClient) => async (integrationUniqueName) => {
104650
- const { resumeIntegrationByUniqueName: integration } = await gqlClient.request(resumeIntegrationTool, { uniqueName: integrationUniqueName });
104651
- return integration;
104652
- };
104653
104521
  var StorageFragment = graphql(`
104654
104522
  fragment Storage on Storage {
104655
104523
  __typename
@@ -104719,20 +104587,6 @@ var restartStorage = graphql(`
104719
104587
  }
104720
104588
  }
104721
104589
  `, [StorageFragment]);
104722
- var pauseStorage = graphql(`
104723
- mutation PauseStorage($uniqueName: String!) {
104724
- pauseStorageByUniqueName(uniqueName: $uniqueName) {
104725
- ...Storage
104726
- }
104727
- }
104728
- `, [StorageFragment]);
104729
- var resumeStorage = graphql(`
104730
- mutation ResumeStorage($uniqueName: String!) {
104731
- resumeStorageByUniqueName(uniqueName: $uniqueName) {
104732
- ...Storage
104733
- }
104734
- }
104735
- `, [StorageFragment]);
104736
104590
  var storageList = (gqlClient) => {
104737
104591
  return async (applicationUniqueName) => {
104738
104592
  const { storagesByUniqueName: { items } } = await gqlClient.request(getStorages, { applicationUniqueName });
@@ -104760,14 +104614,6 @@ var storageRestart = (gqlClient) => async (storageUniqueName) => {
104760
104614
  const { restartStorageByUniqueName: storage } = await gqlClient.request(restartStorage, { uniqueName: storageUniqueName });
104761
104615
  return storage;
104762
104616
  };
104763
- var storagePause = (gqlClient) => async (storageUniqueName) => {
104764
- const { pauseStorageByUniqueName: storage } = await gqlClient.request(pauseStorage, { uniqueName: storageUniqueName });
104765
- return storage;
104766
- };
104767
- var storageResume = (gqlClient) => async (storageUniqueName) => {
104768
- const { resumeStorageByUniqueName: storage } = await gqlClient.request(resumeStorage, { uniqueName: storageUniqueName });
104769
- return storage;
104770
- };
104771
104617
  var MiddlewareFragment = graphql(`
104772
104618
  fragment Middleware on Middleware {
104773
104619
  __typename
@@ -104868,20 +104714,6 @@ var restartMiddleware = graphql(`
104868
104714
  }
104869
104715
  }
104870
104716
  `, [MiddlewareFragment]);
104871
- var pauseMiddleware = graphql(`
104872
- mutation PauseMiddleware($uniqueName: String!) {
104873
- pauseMiddlewareByUniqueName(uniqueName: $uniqueName) {
104874
- ...Middleware
104875
- }
104876
- }
104877
- `, [MiddlewareFragment]);
104878
- var resumeMiddleware = graphql(`
104879
- mutation ResumeMiddleware($uniqueName: String!) {
104880
- resumeMiddlewareByUniqueName(uniqueName: $uniqueName) {
104881
- ...Middleware
104882
- }
104883
- }
104884
- `, [MiddlewareFragment]);
104885
104717
  var middlewareList = (gqlClient) => {
104886
104718
  return async (applicationUniqueName) => {
104887
104719
  const { middlewaresByUniqueName: { items } } = await gqlClient.request(getMiddlewares, { applicationUniqueName });
@@ -104926,14 +104758,6 @@ var middlewareRestart = (gqlClient) => async (middlewareUniqueName) => {
104926
104758
  const { restartMiddlewareByUniqueName: middleware } = await gqlClient.request(restartMiddleware, { uniqueName: middlewareUniqueName });
104927
104759
  return middleware;
104928
104760
  };
104929
- var middlewarePause = (gqlClient) => async (middlewareUniqueName) => {
104930
- const { pauseMiddlewareByUniqueName: middleware } = await gqlClient.request(pauseMiddleware, { uniqueName: middlewareUniqueName });
104931
- return middleware;
104932
- };
104933
- var middlewareResume = (gqlClient) => async (middlewareUniqueName) => {
104934
- const { resumeMiddlewareByUniqueName: middleware } = await gqlClient.request(resumeMiddleware, { uniqueName: middlewareUniqueName });
104935
- return middleware;
104936
- };
104937
104761
  var getPlatformConfigQuery = graphql(`
104938
104762
  query platformConfig {
104939
104763
  config {
@@ -105066,20 +104890,6 @@ var restartPrivateKey = graphql(`
105066
104890
  }
105067
104891
  }
105068
104892
  `, [PrivateKeyFragment]);
105069
- var pausePrivateKey = graphql(`
105070
- mutation PausePrivateKey($uniqueName: String!) {
105071
- pausePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105072
- ...PrivateKey
105073
- }
105074
- }
105075
- `, [PrivateKeyFragment]);
105076
- var resumePrivateKey = graphql(`
105077
- mutation ResumePrivateKey($uniqueName: String!) {
105078
- resumePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105079
- ...PrivateKey
105080
- }
105081
- }
105082
- `, [PrivateKeyFragment]);
105083
104893
  var privateKeyList = (gqlClient) => {
105084
104894
  return async (applicationUniqueName) => {
105085
104895
  const { privateKeysByUniqueName: { items } } = await gqlClient.request(getPrivateKeys, { applicationUniqueName });
@@ -105118,14 +104928,6 @@ var privateKeyRestart = (gqlClient) => async (privateKeyUniqueName) => {
105118
104928
  const { restartPrivateKeyByUniqueName: privateKey } = await gqlClient.request(restartPrivateKey, { uniqueName: privateKeyUniqueName });
105119
104929
  return privateKey;
105120
104930
  };
105121
- var privateKeyPause = (gqlClient) => async (privateKeyUniqueName) => {
105122
- const { pausePrivateKeyByUniqueName: privateKey } = await gqlClient.request(pausePrivateKey, { uniqueName: privateKeyUniqueName });
105123
- return privateKey;
105124
- };
105125
- var privateKeyResume = (gqlClient) => async (privateKeyUniqueName) => {
105126
- const { resumePrivateKeyByUniqueName: privateKey } = await gqlClient.request(resumePrivateKey, { uniqueName: privateKeyUniqueName });
105127
- return privateKey;
105128
- };
105129
104931
  var ClientOptionsSchema = exports_external2.object({
105130
104932
  accessToken: AccessTokenSchema2,
105131
104933
  instance: UrlSchema2
@@ -105205,75 +105007,57 @@ function createSettleMintClient(options) {
105205
105007
  read: blockchainNetworkRead(gqlClient),
105206
105008
  create: blockchainNetworkCreate(gqlClient),
105207
105009
  delete: blockchainNetworkDelete(gqlClient),
105208
- restart: blockchainNetworkRestart(gqlClient),
105209
- pause: blockchainNetworkPause(gqlClient),
105210
- resume: blockchainNetworkResume(gqlClient)
105010
+ restart: blockchainNetworkRestart(gqlClient)
105211
105011
  },
105212
105012
  blockchainNode: {
105213
105013
  list: blockchainNodeList(gqlClient),
105214
105014
  read: blockchainNodeRead(gqlClient),
105215
105015
  create: blockchainNodeCreate(gqlClient),
105216
- restart: blockchainNodeRestart(gqlClient),
105217
- pause: blockchainNodePause(gqlClient),
105218
- resume: blockchainNodeResume(gqlClient)
105016
+ restart: blockchainNodeRestart(gqlClient)
105219
105017
  },
105220
105018
  loadBalancer: {
105221
105019
  list: loadBalancerList(gqlClient),
105222
105020
  read: loadBalancerRead(gqlClient),
105223
105021
  create: loadBalancerCreate(gqlClient),
105224
- restart: loadBalancerRestart(gqlClient),
105225
- pause: loadBalancerPause(gqlClient),
105226
- resume: loadBalancerResume(gqlClient)
105022
+ restart: loadBalancerRestart(gqlClient)
105227
105023
  },
105228
105024
  middleware: {
105229
105025
  list: middlewareList(gqlClient),
105230
105026
  read: middlewareRead(gqlClient),
105231
105027
  graphSubgraphs: graphMiddlewareSubgraphs(gqlClient),
105232
105028
  create: middlewareCreate(gqlClient),
105233
- restart: middlewareRestart(gqlClient),
105234
- pause: middlewarePause(gqlClient),
105235
- resume: middlewareResume(gqlClient)
105029
+ restart: middlewareRestart(gqlClient)
105236
105030
  },
105237
105031
  integrationTool: {
105238
105032
  list: integrationToolList(gqlClient),
105239
105033
  read: integrationToolRead(gqlClient),
105240
105034
  create: integrationToolCreate(gqlClient),
105241
- restart: integrationToolRestart(gqlClient),
105242
- pause: integrationToolPause(gqlClient),
105243
- resume: integrationToolResume(gqlClient)
105035
+ restart: integrationToolRestart(gqlClient)
105244
105036
  },
105245
105037
  storage: {
105246
105038
  list: storageList(gqlClient),
105247
105039
  read: storageRead(gqlClient),
105248
105040
  create: storageCreate(gqlClient),
105249
- restart: storageRestart(gqlClient),
105250
- pause: storagePause(gqlClient),
105251
- resume: storageResume(gqlClient)
105041
+ restart: storageRestart(gqlClient)
105252
105042
  },
105253
105043
  privateKey: {
105254
105044
  list: privateKeyList(gqlClient),
105255
105045
  read: privatekeyRead(gqlClient),
105256
105046
  create: privateKeyCreate(gqlClient),
105257
- restart: privateKeyRestart(gqlClient),
105258
- pause: privateKeyPause(gqlClient),
105259
- resume: privateKeyResume(gqlClient)
105047
+ restart: privateKeyRestart(gqlClient)
105260
105048
  },
105261
105049
  insights: {
105262
105050
  list: insightsList(gqlClient),
105263
105051
  read: insightsRead(gqlClient),
105264
105052
  create: insightsCreate(gqlClient),
105265
- restart: insightsRestart(gqlClient),
105266
- pause: insightsPause(gqlClient),
105267
- resume: insightsResume(gqlClient)
105053
+ restart: insightsRestart(gqlClient)
105268
105054
  },
105269
105055
  customDeployment: {
105270
105056
  list: customdeploymentList(gqlClient),
105271
105057
  read: customdeploymentRead(gqlClient),
105272
105058
  create: customdeploymentCreate(gqlClient),
105273
105059
  update: customdeploymentUpdate(gqlClient),
105274
- restart: customDeploymentRestart(gqlClient),
105275
- pause: customDeploymentPause(gqlClient),
105276
- resume: customDeploymentResume(gqlClient)
105060
+ restart: customDeploymentRestart(gqlClient)
105277
105061
  },
105278
105062
  foundry: { env: getEnv(gqlClient) },
105279
105063
  applicationAccessToken: { create: applicationAccessTokenCreate(gqlClient) },
@@ -106805,6 +106589,21 @@ var promptsGet = (server, _env) => {
106805
106589
  try {
106806
106590
  const promptsDir = path2.resolve(__dirname, "../../prompts");
106807
106591
  const promptPath = path2.join(promptsDir, category, `${name2}.ts`);
106592
+ try {
106593
+ await fs.access(promptPath);
106594
+ } catch (error41) {
106595
+ return {
106596
+ content: [
106597
+ {
106598
+ type: "text",
106599
+ name: "Prompt Not Found",
106600
+ description: `Prompt '${name2}' in category '${category}' not found`,
106601
+ mimeType: "text/plain",
106602
+ text: `Prompt '${name2}' in category '${category}' does not exist. Use the prompts-list tool to see available prompts.`
106603
+ }
106604
+ ]
106605
+ };
106606
+ }
106808
106607
  const fileContent = await fs.readFile(promptPath, "utf-8");
106809
106608
  return {
106810
106609
  content: [
@@ -106818,19 +106617,6 @@ var promptsGet = (server, _env) => {
106818
106617
  ]
106819
106618
  };
106820
106619
  } catch (error41) {
106821
- if (error41 instanceof Error && "code" in error41 && error41.code === "ENOENT") {
106822
- return {
106823
- content: [
106824
- {
106825
- type: "text",
106826
- name: "Prompt Not Found",
106827
- description: `Prompt '${name2}' in category '${category}' not found`,
106828
- mimeType: "text/plain",
106829
- text: `Prompt '${name2}' in category '${category}' does not exist. Use the prompts-list tool to see available prompts.`
106830
- }
106831
- ]
106832
- };
106833
- }
106834
106620
  return {
106835
106621
  content: [
106836
106622
  {
@@ -106921,6 +106707,21 @@ var resourcesGet = (server, _env) => {
106921
106707
  try {
106922
106708
  const resourcesDir = path4.resolve(__dirname, "../../resources");
106923
106709
  const resourcePath = path4.join(resourcesDir, `${name2}.ts`);
106710
+ try {
106711
+ await fs3.access(resourcePath);
106712
+ } catch (error41) {
106713
+ return {
106714
+ content: [
106715
+ {
106716
+ type: "text",
106717
+ name: "Resource Not Found",
106718
+ description: `Resource '${name2}' not found`,
106719
+ mimeType: "text/plain",
106720
+ text: `Resource '${name2}' does not exist. Use the resources-list tool to see available resources.`
106721
+ }
106722
+ ]
106723
+ };
106724
+ }
106924
106725
  const fileContent = await fs3.readFile(resourcePath, "utf-8");
106925
106726
  return {
106926
106727
  content: [
@@ -106934,19 +106735,6 @@ var resourcesGet = (server, _env) => {
106934
106735
  ]
106935
106736
  };
106936
106737
  } catch (error41) {
106937
- if (error41 instanceof Error && "code" in error41 && error41.code === "ENOENT") {
106938
- return {
106939
- content: [
106940
- {
106941
- type: "text",
106942
- name: "Resource Not Found",
106943
- description: `Resource '${name2}' not found`,
106944
- mimeType: "text/plain",
106945
- text: `Resource '${name2}' does not exist. Use the resources-list tool to see available resources.`
106946
- }
106947
- ]
106948
- };
106949
- }
106950
106738
  return {
106951
106739
  content: [
106952
106740
  {
@@ -107097,4 +106885,4 @@ await main().catch((error41) => {
107097
106885
  process.exit(1);
107098
106886
  });
107099
106887
 
107100
- //# debugId=769FE23399735C8164756E2164756E21
106888
+ //# debugId=165E13002C65314864756E2164756E21