@walkeros/mcp 4.2.0 → 4.3.0-next-1781171238534
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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/stdio.js +7 -7
- package/dist/stdio.js.map +1 -1
- package/package.json +4 -4
package/dist/stdio.js
CHANGED
|
@@ -722,7 +722,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
|
|
|
722
722
|
var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
|
|
723
723
|
var WALKEROS_JSON_PATH = "dist/walkerOS.json";
|
|
724
724
|
var CACHE_TTL = 5 * 60 * 1e3;
|
|
725
|
-
var CLIENT_HEADER = "walkeros-mcp/4.
|
|
725
|
+
var CLIENT_HEADER = "walkeros-mcp/4.3.0-next-1781171238534";
|
|
726
726
|
function getPackageBaseUrl() {
|
|
727
727
|
return process.env.WALKEROS_APP_URL || void 0;
|
|
728
728
|
}
|
|
@@ -1466,7 +1466,7 @@ async function feedbackHandlerBody(client, input) {
|
|
|
1466
1466
|
const isAnonymous = explicitAnonymous ?? anonymous ?? true;
|
|
1467
1467
|
await client.submitFeedback(text, {
|
|
1468
1468
|
anonymous: isAnonymous,
|
|
1469
|
-
version: "4.
|
|
1469
|
+
version: "4.3.0-next-1781171238534"
|
|
1470
1470
|
});
|
|
1471
1471
|
return mcpResult8({ ok: true });
|
|
1472
1472
|
} catch (error) {
|
|
@@ -14590,7 +14590,7 @@ async function resolveDeploymentSlug(args) {
|
|
|
14590
14590
|
|
|
14591
14591
|
// src/tools/deploy-manage.ts
|
|
14592
14592
|
var TITLE12 = "Deploy Management";
|
|
14593
|
-
var DESCRIPTION12 = "Deploy walkerOS flows and manage deployments. For get
|
|
14593
|
+
var DESCRIPTION12 = "Deploy walkerOS flows and manage deployments. deploy waits for the deployment to reach a terminal status by default (wait=true), with a 12-minute budget; pass wait=false to return immediately with the deployment id. A finished deployment carries its status and, on failure, an errorMessage with the user-facing reason; use the get action to re-read it. list supports cursor and limit for pagination. delete removes an active deployment. For get and delete pass flowId (required) plus optional slug to disambiguate when a flow has multiple active deployments. If a flow has >=2 active deployments and no slug is supplied, the tool returns a MULTIPLE_DEPLOYMENTS error with a details[] list showing each deployment's slug, type, status, and updatedAt.";
|
|
14594
14594
|
var inputSchema12 = {
|
|
14595
14595
|
action: z11.enum(["deploy", "list", "get", "delete"]).describe("Deployment action to perform"),
|
|
14596
14596
|
projectId: z11.string().optional().describe("Project ID. Optional; falls back to the default project."),
|
|
@@ -14601,7 +14601,7 @@ var inputSchema12 = {
|
|
|
14601
14601
|
type: z11.enum(["web", "server"]).optional().describe("Deployment type filter for list."),
|
|
14602
14602
|
status: z11.string().optional().describe("Status filter for list."),
|
|
14603
14603
|
wait: z11.boolean().optional().describe(
|
|
14604
|
-
"Wait for
|
|
14604
|
+
"Wait for the deployment to reach a terminal status (default true), with a 12-minute budget. Set false to return the deployment id immediately. Only used with deploy action."
|
|
14605
14605
|
),
|
|
14606
14606
|
flowName: z11.string().optional().describe(
|
|
14607
14607
|
"Flow name for multi-settings flows. Only used with deploy action."
|
|
@@ -15643,7 +15643,7 @@ var HttpToolClient = class {
|
|
|
15643
15643
|
};
|
|
15644
15644
|
|
|
15645
15645
|
// src/stdio.ts
|
|
15646
|
-
setClientContext({ type: "mcp", version: "4.
|
|
15646
|
+
setClientContext({ type: "mcp", version: "4.3.0-next-1781171238534" });
|
|
15647
15647
|
process.on("uncaughtException", (err) => {
|
|
15648
15648
|
const emitter = getMcpEmitterSingleton();
|
|
15649
15649
|
if (emitter) {
|
|
@@ -15663,7 +15663,7 @@ process.on("unhandledRejection", (reason) => {
|
|
|
15663
15663
|
async function main() {
|
|
15664
15664
|
const server = createWalkerOSMcpServer({
|
|
15665
15665
|
client: new HttpToolClient(),
|
|
15666
|
-
version: "4.
|
|
15666
|
+
version: "4.3.0-next-1781171238534"
|
|
15667
15667
|
});
|
|
15668
15668
|
const transport = new StdioServerTransport();
|
|
15669
15669
|
await server.connect(transport);
|
|
@@ -15673,7 +15673,7 @@ main().catch(async (error) => {
|
|
|
15673
15673
|
try {
|
|
15674
15674
|
const emitter = await createMcpEmitter({
|
|
15675
15675
|
clientInfo: void 0,
|
|
15676
|
-
packageVersion: "4.
|
|
15676
|
+
packageVersion: "4.3.0-next-1781171238534"
|
|
15677
15677
|
});
|
|
15678
15678
|
await emitter.emitError("startup");
|
|
15679
15679
|
} catch {
|