@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/index.js
CHANGED
|
@@ -886,7 +886,7 @@ async function resolveDeploymentSlug(args) {
|
|
|
886
886
|
|
|
887
887
|
// src/tools/deploy-manage.ts
|
|
888
888
|
var TITLE4 = "Deploy Management";
|
|
889
|
-
var DESCRIPTION4 = "Deploy walkerOS flows and manage deployments. For get
|
|
889
|
+
var DESCRIPTION4 = "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.";
|
|
890
890
|
var inputSchema4 = {
|
|
891
891
|
action: z4.enum(["deploy", "list", "get", "delete"]).describe("Deployment action to perform"),
|
|
892
892
|
projectId: z4.string().optional().describe("Project ID. Optional; falls back to the default project."),
|
|
@@ -897,7 +897,7 @@ var inputSchema4 = {
|
|
|
897
897
|
type: z4.enum(["web", "server"]).optional().describe("Deployment type filter for list."),
|
|
898
898
|
status: z4.string().optional().describe("Status filter for list."),
|
|
899
899
|
wait: z4.boolean().optional().describe(
|
|
900
|
-
"Wait for
|
|
900
|
+
"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."
|
|
901
901
|
),
|
|
902
902
|
flowName: z4.string().optional().describe(
|
|
903
903
|
"Flow name for multi-settings flows. Only used with deploy action."
|
|
@@ -1217,7 +1217,7 @@ async function feedbackHandlerBody(client, input) {
|
|
|
1217
1217
|
const isAnonymous = explicitAnonymous ?? anonymous ?? true;
|
|
1218
1218
|
await client.submitFeedback(text, {
|
|
1219
1219
|
anonymous: isAnonymous,
|
|
1220
|
-
version: "4.
|
|
1220
|
+
version: "4.3.0-next-1781171238534"
|
|
1221
1221
|
});
|
|
1222
1222
|
return mcpResult6({ ok: true });
|
|
1223
1223
|
} catch (error) {
|
|
@@ -1955,7 +1955,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
|
|
|
1955
1955
|
var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
|
|
1956
1956
|
var WALKEROS_JSON_PATH = "dist/walkerOS.json";
|
|
1957
1957
|
var CACHE_TTL = 5 * 60 * 1e3;
|
|
1958
|
-
var CLIENT_HEADER = "walkeros-mcp/4.
|
|
1958
|
+
var CLIENT_HEADER = "walkeros-mcp/4.3.0-next-1781171238534";
|
|
1959
1959
|
function getPackageBaseUrl() {
|
|
1960
1960
|
return process.env.WALKEROS_APP_URL || void 0;
|
|
1961
1961
|
}
|