@settlemint/sdk-mcp 2.3.2-pre186542e → 2.3.2-prebafe7cb
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 +9 -5
- package/dist/mcp.js.map +3 -3
- package/package.json +3 -3
package/dist/mcp.js
CHANGED
|
@@ -72457,7 +72457,7 @@ var {
|
|
|
72457
72457
|
var package_default = {
|
|
72458
72458
|
name: "@settlemint/sdk-mcp",
|
|
72459
72459
|
description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
72460
|
-
version: "2.3.2-
|
|
72460
|
+
version: "2.3.2-prebafe7cb",
|
|
72461
72461
|
type: "module",
|
|
72462
72462
|
private: false,
|
|
72463
72463
|
license: "FSL-1.1-MIT",
|
|
@@ -72499,8 +72499,8 @@ var package_default = {
|
|
|
72499
72499
|
"@graphql-tools/load": "8.1.0",
|
|
72500
72500
|
"@graphql-tools/url-loader": "8.0.31",
|
|
72501
72501
|
"@modelcontextprotocol/sdk": "1.12.0",
|
|
72502
|
-
"@settlemint/sdk-js": "2.3.2-
|
|
72503
|
-
"@settlemint/sdk-utils": "2.3.2-
|
|
72502
|
+
"@settlemint/sdk-js": "2.3.2-prebafe7cb",
|
|
72503
|
+
"@settlemint/sdk-utils": "2.3.2-prebafe7cb",
|
|
72504
72504
|
"@commander-js/extra-typings": "14.0.0",
|
|
72505
72505
|
commander: "14.0.0",
|
|
72506
72506
|
zod: "^3.25.0"
|
|
@@ -76346,7 +76346,11 @@ function getPincodeVerificationChallengeResponse({
|
|
|
76346
76346
|
function createSettleMintClient(options) {
|
|
76347
76347
|
ensureServer();
|
|
76348
76348
|
if (options.instance === STANDALONE_INSTANCE2) {
|
|
76349
|
-
|
|
76349
|
+
if (options.anonymous) {
|
|
76350
|
+
options.instance = "https://console.settlemint.com";
|
|
76351
|
+
} else {
|
|
76352
|
+
throw new Error("Standalone instances cannot connect to the SettleMint platform");
|
|
76353
|
+
}
|
|
76350
76354
|
}
|
|
76351
76355
|
const validatedOptions = options.anonymous ? validate3(exports_external2.object({
|
|
76352
76356
|
...ClientOptionsSchema.shape,
|
|
@@ -78273,4 +78277,4 @@ await main().catch((error36) => {
|
|
|
78273
78277
|
process.exit(1);
|
|
78274
78278
|
});
|
|
78275
78279
|
|
|
78276
|
-
//# debugId=
|
|
78280
|
+
//# debugId=443231B8768F1A5664756E2164756E21
|