@kadoa/mcp 0.4.1-rc.1 → 0.4.1-rc.3
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 +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -50355,7 +50355,9 @@ function registerTools(server, ctx) {
|
|
|
50355
50355
|
return channels;
|
|
50356
50356
|
}
|
|
50357
50357
|
server.registerTool("create_workflow", {
|
|
50358
|
-
description: "
|
|
50358
|
+
description: "IMPORTANT: One workflow = one source. A single workflow can extract many different fields, tables, and sections from the same URL(s) using a rich schema. " + `Do NOT create separate workflows for different data points on the same page — instead, define one workflow with a multi-field schema covering everything needed.
|
|
50359
|
+
|
|
50360
|
+
` + "Create a data extraction workflow using agentic navigation. Supports one-time or scheduled runs. " + "If entity and schema are provided, they guide the extraction; otherwise the AI agent auto-detects the schema from the page. " + "The workflow runs asynchronously and may take several minutes. Do NOT poll or sleep-wait for completion. " + `Return the workflow ID to the user and let them check back later with get_workflow or fetch_data.
|
|
50359
50361
|
|
|
50360
50362
|
` + "NOTE: This tool is for one-time or scheduled extraction ONLY. " + "For continuous real-time monitoring (watching a page for changes and alerting), use the create_realtime_monitor tool instead.",
|
|
50361
50363
|
inputSchema: strictSchema({
|
|
@@ -51339,7 +51341,7 @@ var package_default;
|
|
|
51339
51341
|
var init_package = __esm(() => {
|
|
51340
51342
|
package_default = {
|
|
51341
51343
|
name: "@kadoa/mcp",
|
|
51342
|
-
version: "0.4.1-rc.
|
|
51344
|
+
version: "0.4.1-rc.3",
|
|
51343
51345
|
description: "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
|
|
51344
51346
|
type: "module",
|
|
51345
51347
|
main: "dist/index.js",
|
|
@@ -56584,6 +56586,9 @@ function createServer(auth) {
|
|
|
56584
56586
|
"IMPORTANT: One workflow = one source. A single workflow can extract many different fields, tables, and sections from the same URL(s) using a rich schema.",
|
|
56585
56587
|
"Do NOT create multiple workflows for different data points on the same page \u2014 instead, define one workflow with a multi-field schema covering everything needed.",
|
|
56586
56588
|
"",
|
|
56589
|
+
"Kadoa workflows use agentic navigation: the AI agent can browse pages, click buttons, fill forms, select dropdowns, paginate, open detail pages, and handle multi-step interactions.",
|
|
56590
|
+
"Describe the full navigation steps in the prompt (e.g., 'select year 2022 from the dropdown, click Search, extract the table, then repeat for 2023').",
|
|
56591
|
+
"",
|
|
56587
56592
|
"Workflow lifecycle: create_workflow \u2192 get_workflow (check status) \u2192 fetch_data (get results). Workflows run asynchronously \u2014 never poll or sleep-wait.",
|
|
56588
56593
|
"",
|
|
56589
56594
|
"Use create_realtime_monitor only when the user wants continuous change detection with alerts. For one-time or scheduled extraction, use create_workflow.",
|