@kadoa/mcp 0.5.4-rc.2 → 0.5.5
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/index.js +3 -18
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29556,7 +29556,7 @@ var require_combined_stream = __commonJS((exports, module) => {
|
|
|
29556
29556
|
};
|
|
29557
29557
|
});
|
|
29558
29558
|
|
|
29559
|
-
// node_modules/form-data/node_modules/mime-db/db.json
|
|
29559
|
+
// node_modules/form-data/node_modules/mime-types/node_modules/mime-db/db.json
|
|
29560
29560
|
var require_db = __commonJS((exports, module) => {
|
|
29561
29561
|
module.exports = {
|
|
29562
29562
|
"application/1d-interleaved-parityfec": {
|
|
@@ -41039,11 +41039,6 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41039
41039
|
} catch (error48) {
|
|
41040
41040
|
useNativeURL = error48.code === "ERR_INVALID_URL";
|
|
41041
41041
|
}
|
|
41042
|
-
var sensitiveHeaders = [
|
|
41043
|
-
"Authorization",
|
|
41044
|
-
"Proxy-Authorization",
|
|
41045
|
-
"Cookie"
|
|
41046
|
-
];
|
|
41047
41042
|
var preservedUrlFields = [
|
|
41048
41043
|
"auth",
|
|
41049
41044
|
"host",
|
|
@@ -41091,7 +41086,6 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41091
41086
|
self2.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({ cause }));
|
|
41092
41087
|
}
|
|
41093
41088
|
};
|
|
41094
|
-
this._headerFilter = new RegExp("^(?:" + sensitiveHeaders.concat(options.sensitiveHeaders).map(escapeRegex2).join("|") + ")$", "i");
|
|
41095
41089
|
this._performRequest();
|
|
41096
41090
|
}
|
|
41097
41091
|
RedirectableRequest.prototype = Object.create(Writable.prototype);
|
|
@@ -41229,9 +41223,6 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41229
41223
|
if (!options.headers) {
|
|
41230
41224
|
options.headers = {};
|
|
41231
41225
|
}
|
|
41232
|
-
if (!isArray2(options.sensitiveHeaders)) {
|
|
41233
|
-
options.sensitiveHeaders = [];
|
|
41234
|
-
}
|
|
41235
41226
|
if (options.host) {
|
|
41236
41227
|
if (!options.hostname) {
|
|
41237
41228
|
options.hostname = options.host;
|
|
@@ -41328,7 +41319,7 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41328
41319
|
this._isRedirect = true;
|
|
41329
41320
|
spreadUrlObject(redirectUrl, this._options);
|
|
41330
41321
|
if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
|
|
41331
|
-
removeMatchingHeaders(
|
|
41322
|
+
removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers);
|
|
41332
41323
|
}
|
|
41333
41324
|
if (isFunction2(beforeRedirect)) {
|
|
41334
41325
|
var responseDetails = {
|
|
@@ -41476,9 +41467,6 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41476
41467
|
var dot = subdomain.length - domain2.length - 1;
|
|
41477
41468
|
return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain2);
|
|
41478
41469
|
}
|
|
41479
|
-
function isArray2(value) {
|
|
41480
|
-
return value instanceof Array;
|
|
41481
|
-
}
|
|
41482
41470
|
function isString2(value) {
|
|
41483
41471
|
return typeof value === "string" || value instanceof String;
|
|
41484
41472
|
}
|
|
@@ -41491,9 +41479,6 @@ var require_follow_redirects = __commonJS((exports, module) => {
|
|
|
41491
41479
|
function isURL(value) {
|
|
41492
41480
|
return URL2 && value instanceof URL2;
|
|
41493
41481
|
}
|
|
41494
|
-
function escapeRegex2(regex) {
|
|
41495
|
-
return regex.replace(/[\]\\/()*+?.$]/g, "\\$&");
|
|
41496
|
-
}
|
|
41497
41482
|
module.exports = wrap({ http, https });
|
|
41498
41483
|
module.exports.wrap = wrap;
|
|
41499
41484
|
});
|
|
@@ -52002,7 +51987,7 @@ var package_default;
|
|
|
52002
51987
|
var init_package = __esm(() => {
|
|
52003
51988
|
package_default = {
|
|
52004
51989
|
name: "@kadoa/mcp",
|
|
52005
|
-
version: "0.5.
|
|
51990
|
+
version: "0.5.5",
|
|
52006
51991
|
description: "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
|
|
52007
51992
|
type: "module",
|
|
52008
51993
|
main: "dist/index.js",
|