@settlemint/sdk-mcp 2.3.2-pr66432b4c → 2.3.2-pr6a50284d
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 +98 -49
- package/dist/mcp.js.map +8 -8
- package/package.json +4 -4
package/dist/mcp.js
CHANGED
|
@@ -54118,7 +54118,8 @@ var PingRequestSchema = RequestSchema.extend({
|
|
|
54118
54118
|
});
|
|
54119
54119
|
var ProgressSchema = exports_external.object({
|
|
54120
54120
|
progress: exports_external.number(),
|
|
54121
|
-
total: exports_external.optional(exports_external.number())
|
|
54121
|
+
total: exports_external.optional(exports_external.number()),
|
|
54122
|
+
message: exports_external.optional(exports_external.string())
|
|
54122
54123
|
}).passthrough();
|
|
54123
54124
|
var ProgressNotificationSchema = NotificationSchema.extend({
|
|
54124
54125
|
method: exports_external.literal("notifications/progress"),
|
|
@@ -54283,26 +54284,16 @@ var ListToolsRequestSchema = PaginatedRequestSchema.extend({
|
|
|
54283
54284
|
var ListToolsResultSchema = PaginatedResultSchema.extend({
|
|
54284
54285
|
tools: exports_external.array(ToolSchema)
|
|
54285
54286
|
});
|
|
54286
|
-
var
|
|
54287
|
-
|
|
54288
|
-
|
|
54289
|
-
|
|
54290
|
-
|
|
54291
|
-
|
|
54292
|
-
|
|
54293
|
-
|
|
54294
|
-
structuredContent: exports_external.never().optional(),
|
|
54295
|
-
isError: exports_external.optional(exports_external.boolean())
|
|
54296
|
-
});
|
|
54297
|
-
var CallToolStructuredResultSchema = ResultSchema.extend({
|
|
54298
|
-
structuredContent: exports_external.object({}).passthrough(),
|
|
54299
|
-
content: exports_external.optional(ContentListSchema),
|
|
54287
|
+
var CallToolResultSchema = ResultSchema.extend({
|
|
54288
|
+
content: exports_external.array(exports_external.union([
|
|
54289
|
+
TextContentSchema,
|
|
54290
|
+
ImageContentSchema,
|
|
54291
|
+
AudioContentSchema,
|
|
54292
|
+
EmbeddedResourceSchema
|
|
54293
|
+
])).default([]),
|
|
54294
|
+
structuredContent: exports_external.object({}).passthrough().optional(),
|
|
54300
54295
|
isError: exports_external.optional(exports_external.boolean())
|
|
54301
54296
|
});
|
|
54302
|
-
var CallToolResultSchema = exports_external.union([
|
|
54303
|
-
CallToolUnstructuredResultSchema,
|
|
54304
|
-
CallToolStructuredResultSchema
|
|
54305
|
-
]);
|
|
54306
54297
|
var CompatibilityCallToolResultSchema = CallToolResultSchema.or(ResultSchema.extend({
|
|
54307
54298
|
toolResult: exports_external.unknown()
|
|
54308
54299
|
}));
|
|
@@ -56281,23 +56272,12 @@ class McpServer {
|
|
|
56281
56272
|
}
|
|
56282
56273
|
}
|
|
56283
56274
|
if (tool.outputSchema) {
|
|
56284
|
-
if (!result.structuredContent
|
|
56285
|
-
throw new McpError(ErrorCode.
|
|
56275
|
+
if (!result.structuredContent) {
|
|
56276
|
+
throw new McpError(ErrorCode.InvalidParams, `Tool ${request.params.name} has an output schema but no structured content was provided`);
|
|
56286
56277
|
}
|
|
56287
|
-
|
|
56288
|
-
|
|
56289
|
-
|
|
56290
|
-
type: "text",
|
|
56291
|
-
text: JSON.stringify(result.structuredContent, null, 2)
|
|
56292
|
-
}
|
|
56293
|
-
];
|
|
56294
|
-
}
|
|
56295
|
-
} else {
|
|
56296
|
-
if (!result.content && !result.isError) {
|
|
56297
|
-
throw new McpError(ErrorCode.InternalError, `Tool ${request.params.name} has no outputSchema and must return content`);
|
|
56298
|
-
}
|
|
56299
|
-
if (result.structuredContent) {
|
|
56300
|
-
throw new McpError(ErrorCode.InternalError, `Tool ${request.params.name} has no outputSchema but returned structuredContent`);
|
|
56278
|
+
const parseResult = await tool.outputSchema.safeParseAsync(result.structuredContent);
|
|
56279
|
+
if (!parseResult.success) {
|
|
56280
|
+
throw new McpError(ErrorCode.InvalidParams, `Invalid structured content for tool ${request.params.name}: ${parseResult.error.message}`);
|
|
56301
56281
|
}
|
|
56302
56282
|
}
|
|
56303
56283
|
return result;
|
|
@@ -72298,8 +72278,9 @@ var UrlPathSchema = exports_external2.string().regex(/^\/(?:[a-zA-Z0-9-_]+(?:\/[
|
|
|
72298
72278
|
message: "Invalid URL path format. Must start with '/' and can contain letters, numbers, hyphens, and underscores."
|
|
72299
72279
|
});
|
|
72300
72280
|
var UrlOrPathSchema = exports_external2.union([UrlSchema, UrlPathSchema]);
|
|
72281
|
+
var STANDALONE_INSTANCE = "standalone";
|
|
72301
72282
|
var DotEnvSchema = exports_external2.object({
|
|
72302
|
-
SETTLEMINT_INSTANCE: UrlSchema.default("https://console.settlemint.com"),
|
|
72283
|
+
SETTLEMINT_INSTANCE: exports_external2.union([UrlSchema, exports_external2.literal(STANDALONE_INSTANCE)]).default("https://console.settlemint.com"),
|
|
72303
72284
|
SETTLEMINT_ACCESS_TOKEN: ApplicationAccessTokenSchema.optional(),
|
|
72304
72285
|
SETTLEMINT_PERSONAL_ACCESS_TOKEN: PersonalAccessTokenSchema.optional(),
|
|
72305
72286
|
SETTLEMINT_WORKSPACE: UniqueNameSchema.optional(),
|
|
@@ -72408,8 +72389,9 @@ var UrlPathSchema2 = exports_external2.string().regex(/^\/(?:[a-zA-Z0-9-_]+(?:\/
|
|
|
72408
72389
|
message: "Invalid URL path format. Must start with '/' and can contain letters, numbers, hyphens, and underscores."
|
|
72409
72390
|
});
|
|
72410
72391
|
var UrlOrPathSchema2 = exports_external2.union([UrlSchema2, UrlPathSchema2]);
|
|
72392
|
+
var STANDALONE_INSTANCE2 = "standalone";
|
|
72411
72393
|
var DotEnvSchema2 = exports_external2.object({
|
|
72412
|
-
SETTLEMINT_INSTANCE: UrlSchema2.default("https://console.settlemint.com"),
|
|
72394
|
+
SETTLEMINT_INSTANCE: exports_external2.union([UrlSchema2, exports_external2.literal(STANDALONE_INSTANCE2)]).default("https://console.settlemint.com"),
|
|
72413
72395
|
SETTLEMINT_ACCESS_TOKEN: ApplicationAccessTokenSchema2.optional(),
|
|
72414
72396
|
SETTLEMINT_PERSONAL_ACCESS_TOKEN: PersonalAccessTokenSchema2.optional(),
|
|
72415
72397
|
SETTLEMINT_WORKSPACE: UniqueNameSchema2.optional(),
|
|
@@ -72475,7 +72457,7 @@ var {
|
|
|
72475
72457
|
var package_default = {
|
|
72476
72458
|
name: "@settlemint/sdk-mcp",
|
|
72477
72459
|
description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
72478
|
-
version: "2.3.2-
|
|
72460
|
+
version: "2.3.2-pr6a50284d",
|
|
72479
72461
|
type: "module",
|
|
72480
72462
|
private: false,
|
|
72481
72463
|
license: "FSL-1.1-MIT",
|
|
@@ -72516,9 +72498,9 @@ var package_default = {
|
|
|
72516
72498
|
dependencies: {
|
|
72517
72499
|
"@graphql-tools/load": "8.1.0",
|
|
72518
72500
|
"@graphql-tools/url-loader": "8.0.31",
|
|
72519
|
-
"@modelcontextprotocol/sdk": "1.
|
|
72520
|
-
"@settlemint/sdk-js": "2.3.2-
|
|
72521
|
-
"@settlemint/sdk-utils": "2.3.2-
|
|
72501
|
+
"@modelcontextprotocol/sdk": "1.12.0",
|
|
72502
|
+
"@settlemint/sdk-js": "2.3.2-pr6a50284d",
|
|
72503
|
+
"@settlemint/sdk-utils": "2.3.2-pr6a50284d",
|
|
72522
72504
|
"@commander-js/extra-typings": "14.0.0",
|
|
72523
72505
|
commander: "14.0.0",
|
|
72524
72506
|
zod: "^3.25.0"
|
|
@@ -73648,24 +73630,84 @@ ${Object.keys(rawSchemaInfo.queries).join(`
|
|
|
73648
73630
|
};
|
|
73649
73631
|
|
|
73650
73632
|
// ../utils/dist/http.mjs
|
|
73633
|
+
var maskTokens2 = (output) => {
|
|
73634
|
+
return output.replace(/sm_(pat|aat|sat)_[0-9a-zA-Z]+/g, "***");
|
|
73635
|
+
};
|
|
73636
|
+
function createLogger(options = {}) {
|
|
73637
|
+
const { level = "warn", prefix = "" } = options;
|
|
73638
|
+
const logLevels = {
|
|
73639
|
+
debug: 0,
|
|
73640
|
+
info: 1,
|
|
73641
|
+
warn: 2,
|
|
73642
|
+
error: 3,
|
|
73643
|
+
none: 4
|
|
73644
|
+
};
|
|
73645
|
+
const currentLevelValue = logLevels[level];
|
|
73646
|
+
const formatArgs = (args) => {
|
|
73647
|
+
if (args.length === 0 || args.every((arg) => arg === undefined || arg === null)) {
|
|
73648
|
+
return "";
|
|
73649
|
+
}
|
|
73650
|
+
const formatted = args.map((arg) => {
|
|
73651
|
+
if (arg instanceof Error) {
|
|
73652
|
+
return `
|
|
73653
|
+
${arg.stack || arg.message}`;
|
|
73654
|
+
}
|
|
73655
|
+
if (typeof arg === "object" && arg !== null) {
|
|
73656
|
+
return `
|
|
73657
|
+
${JSON.stringify(arg, null, 2)}`;
|
|
73658
|
+
}
|
|
73659
|
+
return ` ${String(arg)}`;
|
|
73660
|
+
}).join("");
|
|
73661
|
+
return `, args:${formatted}`;
|
|
73662
|
+
};
|
|
73663
|
+
const shouldLog = (level2) => {
|
|
73664
|
+
return logLevels[level2] >= currentLevelValue;
|
|
73665
|
+
};
|
|
73666
|
+
return {
|
|
73667
|
+
debug: (message, ...args) => {
|
|
73668
|
+
if (shouldLog("debug")) {
|
|
73669
|
+
console.debug(`\x1B[32m${prefix}[DEBUG] ${maskTokens2(message)}${maskTokens2(formatArgs(args))}\x1B[0m`);
|
|
73670
|
+
}
|
|
73671
|
+
},
|
|
73672
|
+
info: (message, ...args) => {
|
|
73673
|
+
if (shouldLog("info")) {
|
|
73674
|
+
console.info(`\x1B[34m${prefix}[INFO] ${maskTokens2(message)}${maskTokens2(formatArgs(args))}\x1B[0m`);
|
|
73675
|
+
}
|
|
73676
|
+
},
|
|
73677
|
+
warn: (message, ...args) => {
|
|
73678
|
+
if (shouldLog("warn")) {
|
|
73679
|
+
console.warn(`\x1B[33m${prefix}[WARN] ${maskTokens2(message)}${maskTokens2(formatArgs(args))}\x1B[0m`);
|
|
73680
|
+
}
|
|
73681
|
+
},
|
|
73682
|
+
error: (message, ...args) => {
|
|
73683
|
+
if (shouldLog("error")) {
|
|
73684
|
+
console.error(`\x1B[31m${prefix}[ERROR] ${maskTokens2(message)}${maskTokens2(formatArgs(args))}\x1B[0m`);
|
|
73685
|
+
}
|
|
73686
|
+
}
|
|
73687
|
+
};
|
|
73688
|
+
}
|
|
73689
|
+
var logger = createLogger();
|
|
73651
73690
|
async function retryWhenFailed(fn, maxRetries = 5, initialSleepTime = 1000, stopOnError) {
|
|
73652
|
-
let
|
|
73653
|
-
|
|
73691
|
+
let retries = 0;
|
|
73692
|
+
const maxAttempts = maxRetries + 1;
|
|
73693
|
+
while (retries < maxAttempts) {
|
|
73654
73694
|
try {
|
|
73655
73695
|
return await fn();
|
|
73656
73696
|
} catch (e3) {
|
|
73697
|
+
const error35 = e3;
|
|
73657
73698
|
if (typeof stopOnError === "function") {
|
|
73658
|
-
const error35 = e3;
|
|
73659
73699
|
if (stopOnError(error35)) {
|
|
73660
73700
|
throw error35;
|
|
73661
73701
|
}
|
|
73662
73702
|
}
|
|
73663
|
-
|
|
73664
|
-
if (attempt >= maxRetries) {
|
|
73703
|
+
if (retries >= maxRetries) {
|
|
73665
73704
|
throw e3;
|
|
73666
73705
|
}
|
|
73667
|
-
const
|
|
73668
|
-
const
|
|
73706
|
+
const baseDelay = 2 ** retries * initialSleepTime;
|
|
73707
|
+
const jitterAmount = initialSleepTime * (Math.random() / 10);
|
|
73708
|
+
const delay = baseDelay + jitterAmount;
|
|
73709
|
+
retries += 1;
|
|
73710
|
+
logger.warn(`An error occurred ${error35.message}, retrying in ${delay.toFixed(0)}ms (retry ${retries} of ${maxRetries})...`);
|
|
73669
73711
|
await new Promise((resolve) => setTimeout(resolve, delay));
|
|
73670
73712
|
}
|
|
73671
73713
|
}
|
|
@@ -76363,6 +76405,13 @@ function getPincodeVerificationChallengeResponse({
|
|
|
76363
76405
|
}
|
|
76364
76406
|
function createSettleMintClient(options) {
|
|
76365
76407
|
ensureServer();
|
|
76408
|
+
if (options.instance === STANDALONE_INSTANCE2) {
|
|
76409
|
+
if (options.anonymous) {
|
|
76410
|
+
options.instance = "https://console.settlemint.com";
|
|
76411
|
+
} else {
|
|
76412
|
+
throw new Error("Standalone instances cannot connect to the SettleMint platform");
|
|
76413
|
+
}
|
|
76414
|
+
}
|
|
76366
76415
|
const validatedOptions = options.anonymous ? validate3(exports_external2.object({
|
|
76367
76416
|
...ClientOptionsSchema.shape,
|
|
76368
76417
|
accessToken: exports_external2.literal("")
|
|
@@ -78288,4 +78337,4 @@ await main().catch((error36) => {
|
|
|
78288
78337
|
process.exit(1);
|
|
78289
78338
|
});
|
|
78290
78339
|
|
|
78291
|
-
//# debugId=
|
|
78340
|
+
//# debugId=31B159EB991027CF64756E2164756E21
|