@kadoa/mcp 0.5.31 → 0.5.32
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/README.md +20 -16
- package/dist/index.js +2272 -11287
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,11 +62,9 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
62
62
|
| Tool | Description |
|
|
63
63
|
|------|-------------|
|
|
64
64
|
| `scrape` | Immediately fetch one URL as markdown or raw HTML (shown only for enabled workspaces) |
|
|
65
|
-
| `list_inbox` | List personal unread Inbox items across workflows, optionally including read history |
|
|
66
|
-
| `mark_inbox_item_read` | Acknowledge one Inbox item without performing its underlying workflow action |
|
|
67
65
|
| `create_workflow` | Create an agentic navigation workflow from a prompt |
|
|
68
66
|
| `create_realtime_monitor` | Create an asynchronous realtime monitoring workflow after persisting notification channels; returns workflow/session/thread/job IDs |
|
|
69
|
-
| `list_workflows` | List workflows with status, Assistant session availability, template version drift, and
|
|
67
|
+
| `list_workflows` | List workflows with status, Assistant session availability, template version drift, realtime health, and `awaitingUserInput`; filter with `statusFilters: ["group:attention"]` for everything waiting on you |
|
|
70
68
|
| `get_workflow` | Get canonical intent, Assistant/session, template ownership, run health, schedule, location, monitoring, and validation details |
|
|
71
69
|
| `request_workflow_update` | Ask the workflow Assistant to change extraction intent, navigation, sourcing, pagination, or generated behavior without changing the workflow ID |
|
|
72
70
|
| `get_workflow_assistant` | Get the workflow Assistant's current activity and any pending clarification question |
|
|
@@ -90,10 +88,9 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
90
88
|
|
|
91
89
|
## Workflow controls and behavior
|
|
92
90
|
|
|
93
|
-
For detailed customer guidance, see the [Kadoa documentation](https://docs.kadoa.com/docs/introduction), including [workflows](https://docs.kadoa.com/docs/workflows/overview), [Workflow Assistant](https://docs.kadoa.com/docs/sdk/workflows/assistant), [
|
|
91
|
+
For detailed customer guidance, see the [Kadoa documentation](https://docs.kadoa.com/docs/introduction), including [workflows](https://docs.kadoa.com/docs/workflows/overview), [Workflow Assistant](https://docs.kadoa.com/docs/sdk/workflows/assistant), [notifications](https://docs.kadoa.com/docs/notifications), and [templates](https://docs.kadoa.com/docs/templates).
|
|
94
92
|
|
|
95
93
|
- **Assistant work vs. schedule:** `interrupt_workflow_assistant`, `resume_workflow_assistant`, and `stop_workflow_assistant` control the Assistant session only; they do not pause scheduled workflow runs. Use `pause_workflow` to stop an active workflow's schedule and `approve_workflow` to activate it again.
|
|
96
|
-
- **Inbox acknowledgement:** `mark_inbox_item_read` only acknowledges an item. For an Assistant question, inspect it with `get_workflow_assistant`, then use `answer_workflow_assistant_question` to answer and resume; use `resume_workflow_assistant` only for an idle or interrupted Assistant.
|
|
97
94
|
- **Run history:** `list_workflow_runs` filters by `status` (`success`, `failed`, or `in_progress`) and supports 1-based `page` and `limit` pagination.
|
|
98
95
|
- **Notifications:** `create_realtime_monitor` requires at least one email, webhook, Slack, or WebSocket notification channel. Notifications are optional when creating a standard one-time or scheduled workflow with `create_workflow`.
|
|
99
96
|
- **Template changes:** `update_template` changes template name and description only. To change template-controlled configuration, create an immutable version with `create_template_version`, then roll it out to linked workflows with `apply_template_version`.
|
|
@@ -114,17 +111,6 @@ its own when a site blocks bots. Ask for HTML when you need the raw source.
|
|
|
114
111
|
|
|
115
112
|
The `scrape` tool is available only to workspaces enabled for the Scrape API. Use a workflow instead for structured extraction, recurring runs, monitoring, or multi-page navigation.
|
|
116
113
|
|
|
117
|
-
### Review work that needs attention
|
|
118
|
-
|
|
119
|
-
```
|
|
120
|
-
> You: What needs my attention in Kadoa?
|
|
121
|
-
|
|
122
|
-
Claude calls list_inbox and shows unread questions and review items across
|
|
123
|
-
workflows. For an Assistant question, it calls get_workflow_assistant to load
|
|
124
|
-
the authoritative question before asking whether you want to answer it.
|
|
125
|
-
Marking the Inbox item read only acknowledges it.
|
|
126
|
-
```
|
|
127
|
-
|
|
128
114
|
### Create and run a workflow
|
|
129
115
|
|
|
130
116
|
```
|
|
@@ -181,6 +167,24 @@ one-time or scheduled workflow fails, call run_workflow again with the same
|
|
|
181
167
|
workflow ID and configuration - never delete and recreate it just to retry.
|
|
182
168
|
```
|
|
183
169
|
|
|
170
|
+
### Review work that needs attention
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
> You: What needs my attention in Kadoa?
|
|
174
|
+
|
|
175
|
+
Claude calls list_workflows with statusFilters ["group:attention"], which
|
|
176
|
+
returns the same workflows the dashboard shows under "Needs your attention".
|
|
177
|
+
A row's awaitingUserInput.prompt holds the Assistant's question when there is
|
|
178
|
+
one; a row with awaitingUserInput but no prompt is a setup the user left
|
|
179
|
+
unfinished; a row with displayState PREVIEW and no awaitingUserInput is
|
|
180
|
+
preview data to review or approve. Claude answers a question with
|
|
181
|
+
get_workflow_assistant then answer_workflow_assistant_question, resumes an
|
|
182
|
+
unfinished setup with resume_workflow_assistant or request_workflow_update,
|
|
183
|
+
and approves preview data with approve_workflow. Workflows with an open
|
|
184
|
+
support ticket are excluded from this group and appear under group:support
|
|
185
|
+
instead.
|
|
186
|
+
```
|
|
187
|
+
|
|
184
188
|
### Update deterministic workflow settings
|
|
185
189
|
|
|
186
190
|
```
|