@kadoa/mcp 0.5.0 → 0.5.2

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -50260,6 +50260,8 @@ function deriveStatusLabel(workflow) {
50260
50260
  return "Scheduled";
50261
50261
  case "RUNNING":
50262
50262
  return "Running";
50263
+ case "VALIDATING":
50264
+ return "Validating";
50263
50265
  case "FAILED":
50264
50266
  return "Failed";
50265
50267
  case "PAUSED":
@@ -50771,7 +50773,7 @@ function registerTools(server, ctx) {
50771
50773
  });
50772
50774
  }));
50773
50775
  server.registerTool("fetch_data", {
50774
- description: "Get extracted data from a workflow. Data is only available after the workflow run has completed (displayState is no longer RUNNING). Do NOT poll or sleep-wait for completion.",
50776
+ description: "Get extracted data from a workflow. Data is only available after the workflow run has completed (status is no longer 'Running' or 'Validating'). Do NOT poll or sleep-wait for completion.",
50775
50777
  inputSchema: {
50776
50778
  workflowId: exports_external.string().describe("The workflow ID"),
50777
50779
  limit: exports_external.preprocess(coerceNumber(), exports_external.number()).optional().describe("Maximum number of records to return"),
@@ -51498,7 +51500,7 @@ var package_default;
51498
51500
  var init_package = __esm(() => {
51499
51501
  package_default = {
51500
51502
  name: "@kadoa/mcp",
51501
- version: "0.5.0",
51503
+ version: "0.5.2",
51502
51504
  description: "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
51503
51505
  type: "module",
51504
51506
  main: "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadoa/mcp",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",