@settlemint/sdk-mcp 2.6.2-mainb878eeb6 → 2.6.2-mainc417ad80
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 +30 -28
- package/dist/mcp.js.map +4 -4
- package/package.json +4 -4
package/dist/mcp.js
CHANGED
|
@@ -48170,7 +48170,7 @@ var coerce = {
|
|
|
48170
48170
|
date: (arg) => ZodDate.create({ ...arg, coerce: true })
|
|
48171
48171
|
};
|
|
48172
48172
|
var NEVER = INVALID;
|
|
48173
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
48173
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js
|
|
48174
48174
|
var LATEST_PROTOCOL_VERSION = "2025-06-18";
|
|
48175
48175
|
var SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, "2025-03-26", "2024-11-05", "2024-10-07"];
|
|
48176
48176
|
var JSONRPC_VERSION = "2.0";
|
|
@@ -48691,7 +48691,7 @@ class McpError extends Error {
|
|
|
48691
48691
|
}
|
|
48692
48692
|
}
|
|
48693
48693
|
|
|
48694
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
48694
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js
|
|
48695
48695
|
var DEFAULT_REQUEST_TIMEOUT_MSEC = 60000;
|
|
48696
48696
|
|
|
48697
48697
|
class Protocol {
|
|
@@ -49034,7 +49034,7 @@ function mergeCapabilities(base, additional) {
|
|
|
49034
49034
|
}, { ...base });
|
|
49035
49035
|
}
|
|
49036
49036
|
|
|
49037
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
49037
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js
|
|
49038
49038
|
var import_ajv = __toESM(require_ajv(), 1);
|
|
49039
49039
|
|
|
49040
49040
|
class Server extends Protocol {
|
|
@@ -50472,7 +50472,7 @@ var zodToJsonSchema = (schema, options) => {
|
|
|
50472
50472
|
}
|
|
50473
50473
|
return combined;
|
|
50474
50474
|
};
|
|
50475
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
50475
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js
|
|
50476
50476
|
var McpZodTypeKind;
|
|
50477
50477
|
(function(McpZodTypeKind2) {
|
|
50478
50478
|
McpZodTypeKind2["Completable"] = "McpCompletable";
|
|
@@ -50525,7 +50525,7 @@ function processCreateParams2(params) {
|
|
|
50525
50525
|
return { errorMap: customMap, description };
|
|
50526
50526
|
}
|
|
50527
50527
|
|
|
50528
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
50528
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js
|
|
50529
50529
|
class McpServer {
|
|
50530
50530
|
constructor(serverInfo, options) {
|
|
50531
50531
|
this._registeredResources = {};
|
|
@@ -50562,14 +50562,16 @@ class McpServer {
|
|
|
50562
50562
|
title: tool.title,
|
|
50563
50563
|
description: tool.description,
|
|
50564
50564
|
inputSchema: tool.inputSchema ? zodToJsonSchema(tool.inputSchema, {
|
|
50565
|
-
strictUnions: true
|
|
50565
|
+
strictUnions: true,
|
|
50566
|
+
pipeStrategy: "input"
|
|
50566
50567
|
}) : EMPTY_OBJECT_JSON_SCHEMA,
|
|
50567
50568
|
annotations: tool.annotations,
|
|
50568
50569
|
_meta: tool._meta
|
|
50569
50570
|
};
|
|
50570
50571
|
if (tool.outputSchema) {
|
|
50571
50572
|
toolDefinition.outputSchema = zodToJsonSchema(tool.outputSchema, {
|
|
50572
|
-
strictUnions: true
|
|
50573
|
+
strictUnions: true,
|
|
50574
|
+
pipeStrategy: "output"
|
|
50573
50575
|
});
|
|
50574
50576
|
}
|
|
50575
50577
|
return toolDefinition;
|
|
@@ -51091,10 +51093,10 @@ var EMPTY_COMPLETION_RESULT = {
|
|
|
51091
51093
|
}
|
|
51092
51094
|
};
|
|
51093
51095
|
|
|
51094
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
51096
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
51095
51097
|
import process2 from "node:process";
|
|
51096
51098
|
|
|
51097
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
51099
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js
|
|
51098
51100
|
class ReadBuffer {
|
|
51099
51101
|
append(chunk) {
|
|
51100
51102
|
this._buffer = this._buffer ? Buffer.concat([this._buffer, chunk]) : chunk;
|
|
@@ -51124,7 +51126,7 @@ function serializeMessage(message) {
|
|
|
51124
51126
|
`;
|
|
51125
51127
|
}
|
|
51126
51128
|
|
|
51127
|
-
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.
|
|
51129
|
+
// ../../node_modules/.bun/@modelcontextprotocol+sdk@1.20.2/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js
|
|
51128
51130
|
class StdioServerTransport {
|
|
51129
51131
|
constructor(_stdin = process2.stdin, _stdout = process2.stdout) {
|
|
51130
51132
|
this._stdin = _stdin;
|
|
@@ -75186,19 +75188,19 @@ var $URL = ponyfills.URL;
|
|
|
75186
75188
|
var $URLSearchParams = ponyfills.URLSearchParams;
|
|
75187
75189
|
|
|
75188
75190
|
// ../../node_modules/.bun/@repeaterjs+repeater@3.0.6/node_modules/@repeaterjs/repeater/repeater.js
|
|
75189
|
-
/*! *****************************************************************************
|
|
75190
|
-
Copyright (c) Microsoft Corporation.
|
|
75191
|
-
|
|
75192
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
75193
|
-
purpose with or without fee is hereby granted.
|
|
75194
|
-
|
|
75195
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
75196
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
75197
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
75198
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
75199
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
75200
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
75201
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
75191
|
+
/*! *****************************************************************************
|
|
75192
|
+
Copyright (c) Microsoft Corporation.
|
|
75193
|
+
|
|
75194
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
75195
|
+
purpose with or without fee is hereby granted.
|
|
75196
|
+
|
|
75197
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
75198
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
75199
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
75200
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
75201
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
75202
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
75203
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
75202
75204
|
***************************************************************************** */
|
|
75203
75205
|
var extendStatics = function(d, b) {
|
|
75204
75206
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d2, b2) {
|
|
@@ -82511,7 +82513,7 @@ var portalQueries = (server, env3) => {
|
|
|
82511
82513
|
var package_default = {
|
|
82512
82514
|
name: "@settlemint/sdk-mcp",
|
|
82513
82515
|
description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
|
|
82514
|
-
version: "2.6.2-
|
|
82516
|
+
version: "2.6.2-mainc417ad80",
|
|
82515
82517
|
type: "module",
|
|
82516
82518
|
private: false,
|
|
82517
82519
|
license: "FSL-1.1-MIT",
|
|
@@ -82553,9 +82555,9 @@ var package_default = {
|
|
|
82553
82555
|
"@commander-js/extra-typings": "14.0.0",
|
|
82554
82556
|
"@graphql-tools/load": "8.1.2",
|
|
82555
82557
|
"@graphql-tools/url-loader": "9.0.0",
|
|
82556
|
-
"@modelcontextprotocol/sdk": "1.20.
|
|
82557
|
-
"@settlemint/sdk-js": "2.6.2-
|
|
82558
|
-
"@settlemint/sdk-utils": "2.6.2-
|
|
82558
|
+
"@modelcontextprotocol/sdk": "1.20.2",
|
|
82559
|
+
"@settlemint/sdk-js": "2.6.2-mainc417ad80",
|
|
82560
|
+
"@settlemint/sdk-utils": "2.6.2-mainc417ad80",
|
|
82559
82561
|
commander: "14.0.1",
|
|
82560
82562
|
graphql: "16.11.0",
|
|
82561
82563
|
zod: "^4",
|
|
@@ -88624,4 +88626,4 @@ await main().catch((error47) => {
|
|
|
88624
88626
|
process.exit(1);
|
|
88625
88627
|
});
|
|
88626
88628
|
|
|
88627
|
-
//# debugId=
|
|
88629
|
+
//# debugId=7801D3D7BD5A665064756E2164756E21
|