@digipair/skill-mcp 0.107.1 → 0.107.3
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/index.cjs.js +8 -7
- package/index.esm.js +8 -7
- package/package.json +1 -1
- package/schema.fr.json +1 -1
- package/schema.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -23938,14 +23938,14 @@ function indent(str, spaces) {
|
|
|
23938
23938
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23939
23939
|
// match is required
|
|
23940
23940
|
if (!match) {
|
|
23941
|
-
return
|
|
23941
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
23942
23942
|
v: nextMatch1
|
|
23943
23943
|
};
|
|
23944
23944
|
}
|
|
23945
23945
|
var token = match.token, offset = match.offset;
|
|
23946
23946
|
i1 += offset;
|
|
23947
23947
|
if (token === " ") {
|
|
23948
|
-
return
|
|
23948
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23949
23949
|
}
|
|
23950
23950
|
tokens1 = _to_consumable_array$j(tokens1).concat([
|
|
23951
23951
|
token
|
|
@@ -23964,7 +23964,7 @@ function indent(str, spaces) {
|
|
|
23964
23964
|
if (contextKeys.some(function(el) {
|
|
23965
23965
|
return el.startsWith(name);
|
|
23966
23966
|
})) {
|
|
23967
|
-
return
|
|
23967
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23968
23968
|
}
|
|
23969
23969
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23970
23970
|
return el === name;
|
|
@@ -23983,9 +23983,9 @@ function indent(str, spaces) {
|
|
|
23983
23983
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23984
23984
|
return el.startsWith(name);
|
|
23985
23985
|
})) {
|
|
23986
|
-
return
|
|
23986
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
23987
23987
|
}
|
|
23988
|
-
return
|
|
23988
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
23989
23989
|
v: nextMatch1
|
|
23990
23990
|
};
|
|
23991
23991
|
};
|
|
@@ -62386,9 +62386,10 @@ let MCPServerService = class MCPServerService {
|
|
|
62386
62386
|
inputSchema: tool.inputSchema,
|
|
62387
62387
|
outputSchema: tool.outputSchema
|
|
62388
62388
|
}, async (params)=>{
|
|
62389
|
-
return await executePinsList(
|
|
62389
|
+
return await executePinsList(tool.execute, {
|
|
62390
|
+
context,
|
|
62390
62391
|
params
|
|
62391
|
-
}
|
|
62392
|
+
}, `${context.__PATH__}.tools[${i}].execute`);
|
|
62392
62393
|
});
|
|
62393
62394
|
}
|
|
62394
62395
|
const transport = new StreamableHTTPServerTransport({
|
package/index.esm.js
CHANGED
|
@@ -23907,14 +23907,14 @@ function indent(str, spaces) {
|
|
|
23907
23907
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23908
23908
|
// match is required
|
|
23909
23909
|
if (!match) {
|
|
23910
|
-
return tokens = tokens1,
|
|
23910
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23911
23911
|
v: nextMatch1
|
|
23912
23912
|
};
|
|
23913
23913
|
}
|
|
23914
23914
|
var token = match.token, offset = match.offset;
|
|
23915
23915
|
i1 += offset;
|
|
23916
23916
|
if (token === " ") {
|
|
23917
|
-
return tokens = tokens1,
|
|
23917
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23918
23918
|
}
|
|
23919
23919
|
tokens1 = _to_consumable_array$j(tokens1).concat([
|
|
23920
23920
|
token
|
|
@@ -23933,7 +23933,7 @@ function indent(str, spaces) {
|
|
|
23933
23933
|
if (contextKeys.some(function(el) {
|
|
23934
23934
|
return el.startsWith(name);
|
|
23935
23935
|
})) {
|
|
23936
|
-
return tokens = tokens1,
|
|
23936
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23937
23937
|
}
|
|
23938
23938
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23939
23939
|
return el === name;
|
|
@@ -23952,9 +23952,9 @@ function indent(str, spaces) {
|
|
|
23952
23952
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23953
23953
|
return el.startsWith(name);
|
|
23954
23954
|
})) {
|
|
23955
|
-
return tokens = tokens1,
|
|
23955
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23956
23956
|
}
|
|
23957
|
-
return tokens = tokens1,
|
|
23957
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23958
23958
|
v: nextMatch1
|
|
23959
23959
|
};
|
|
23960
23960
|
};
|
|
@@ -62355,9 +62355,10 @@ let MCPServerService = class MCPServerService {
|
|
|
62355
62355
|
inputSchema: tool.inputSchema,
|
|
62356
62356
|
outputSchema: tool.outputSchema
|
|
62357
62357
|
}, async (params)=>{
|
|
62358
|
-
return await executePinsList(
|
|
62358
|
+
return await executePinsList(tool.execute, {
|
|
62359
|
+
context,
|
|
62359
62360
|
params
|
|
62360
|
-
}
|
|
62361
|
+
}, `${context.__PATH__}.tools[${i}].execute`);
|
|
62361
62362
|
});
|
|
62362
62363
|
}
|
|
62363
62364
|
const transport = new StreamableHTTPServerTransport({
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED