@yawlabs/mcp 0.59.0 → 0.59.1
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 +6 -6
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -2877,7 +2877,7 @@ function selectFlakyNamespaces(entries, limit) {
|
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
2879
2879
|
// src/doctor-cmd.ts
|
|
2880
|
-
var VERSION = true ? "0.59.
|
|
2880
|
+
var VERSION = true ? "0.59.1" : "dev";
|
|
2881
2881
|
async function runDoctor(opts = {}) {
|
|
2882
2882
|
if (opts.json) return runDoctorJson(opts);
|
|
2883
2883
|
const lines = [];
|
|
@@ -5127,7 +5127,7 @@ Or re-run with --run to upgrade in place.`);
|
|
|
5127
5127
|
return { exitCode: 3, lines };
|
|
5128
5128
|
}
|
|
5129
5129
|
function readCurrentVersion() {
|
|
5130
|
-
return true ? "0.59.
|
|
5130
|
+
return true ? "0.59.1" : "dev";
|
|
5131
5131
|
}
|
|
5132
5132
|
|
|
5133
5133
|
// src/auto-upgrade.ts
|
|
@@ -5175,7 +5175,7 @@ function defaultSpawn2(cmd, args) {
|
|
|
5175
5175
|
async function maybeAutoUpgrade(deps = {}) {
|
|
5176
5176
|
const optOut = process.env.YAW_MCP_AUTO_UPGRADE;
|
|
5177
5177
|
if (optOut === "0" || optOut?.toLowerCase() === "false") return;
|
|
5178
|
-
const current = deps.currentVersion ?? (true ? "0.59.
|
|
5178
|
+
const current = deps.currentVersion ?? (true ? "0.59.1" : "dev");
|
|
5179
5179
|
if (current === "dev") return;
|
|
5180
5180
|
const method = detectInstallMethod(deps.argvPath ?? process.argv[1]);
|
|
5181
5181
|
const latest = await (deps.fetchLatestImpl ?? fetchLatestVersion2)();
|
|
@@ -7444,7 +7444,7 @@ function categorizeSpawnError(err) {
|
|
|
7444
7444
|
}
|
|
7445
7445
|
async function connectToUpstream(config, onDisconnect, onListChanged) {
|
|
7446
7446
|
const client = new Client(
|
|
7447
|
-
{ name: "yaw-mcp", version: true ? "0.59.
|
|
7447
|
+
{ name: "yaw-mcp", version: true ? "0.59.1" : "dev" },
|
|
7448
7448
|
{ capabilities: {} }
|
|
7449
7449
|
);
|
|
7450
7450
|
let transport;
|
|
@@ -7753,7 +7753,7 @@ var ConnectServer = class _ConnectServer {
|
|
|
7753
7753
|
this.apiUrl = apiUrl5;
|
|
7754
7754
|
this.token = token5;
|
|
7755
7755
|
this.server = new Server(
|
|
7756
|
-
{ name: "yaw-mcp", version: true ? "0.59.
|
|
7756
|
+
{ name: "yaw-mcp", version: true ? "0.59.1" : "dev" },
|
|
7757
7757
|
{
|
|
7758
7758
|
capabilities: {
|
|
7759
7759
|
tools: { listChanged: true },
|
|
@@ -10750,7 +10750,7 @@ if (subcommand === "compliance") {
|
|
|
10750
10750
|
`);
|
|
10751
10751
|
process.exit(0);
|
|
10752
10752
|
} else if (subcommand === "--version" || subcommand === "-V") {
|
|
10753
|
-
process.stdout.write(`yaw-mcp ${true ? "0.59.
|
|
10753
|
+
process.stdout.write(`yaw-mcp ${true ? "0.59.1" : "dev"}
|
|
10754
10754
|
`);
|
|
10755
10755
|
process.exit(0);
|
|
10756
10756
|
} else if (subcommand && !subcommand.startsWith("-")) {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/mcp",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.1",
|
|
4
4
|
"mcpName": "io.github.YawLabs/mcp",
|
|
5
5
|
"description": "Yaw MCP -- MCP servers, managed. Run locally, sync across machines with Pro.",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"author": "Yaw Labs <support@yaw.sh> (https://yaw.sh/mcp)",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"bin": {
|
|
10
|
-
"yaw-mcp": "
|
|
10
|
+
"yaw-mcp": "dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"dist",
|