@kadoa/mcp 0.5.25 → 0.5.29
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 +13 -3
- package/dist/index.js +1387 -1207
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
66
66
|
| `mark_inbox_item_read` | Acknowledge one Inbox item without performing its underlying workflow action |
|
|
67
67
|
| `create_workflow` | Create an agentic navigation workflow from a prompt |
|
|
68
68
|
| `create_realtime_monitor` | Create an asynchronous realtime monitoring workflow after persisting notification channels; returns workflow/session/thread/job IDs |
|
|
69
|
-
| `list_workflows` | List
|
|
69
|
+
| `list_workflows` | List workflows with status, Assistant session availability, template version drift, and realtime freshness or health |
|
|
70
70
|
| `get_workflow` | Get canonical intent, Assistant/session, template ownership, run health, schedule, location, monitoring, and validation details |
|
|
71
71
|
| `request_workflow_update` | Ask the workflow Assistant to change extraction intent, navigation, sourcing, pagination, or generated behavior without changing the workflow ID |
|
|
72
72
|
| `get_workflow_assistant` | Get the workflow Assistant's current activity and any pending clarification question |
|
|
@@ -88,6 +88,16 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
88
88
|
| `team_list` | List all teams you belong to and see which is active |
|
|
89
89
|
| `team_switch` | Switch the active team by name or ID |
|
|
90
90
|
|
|
91
|
+
## Workflow controls and behavior
|
|
92
|
+
|
|
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), [Personal Inbox](https://docs.kadoa.com/docs/sdk/inbox), [notifications](https://docs.kadoa.com/docs/notifications), and [templates](https://docs.kadoa.com/docs/templates).
|
|
94
|
+
|
|
95
|
+
- **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
|
+
- **Run history:** `list_workflow_runs` filters by `status` (`success`, `failed`, or `in_progress`) and supports 1-based `page` and `limit` pagination.
|
|
98
|
+
- **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
|
+
- **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`.
|
|
100
|
+
|
|
91
101
|
## Usage Examples
|
|
92
102
|
|
|
93
103
|
Once the MCP server is configured, you can manage the full workflow lifecycle through natural conversation. Here are a few common operations shown as Claude Code sessions.
|
|
@@ -154,8 +164,8 @@ workflow ID for follow-up with get_workflow or fetch_data.
|
|
|
154
164
|
```
|
|
155
165
|
> You: List my workflows.
|
|
156
166
|
|
|
157
|
-
Claude calls list_workflows and shows
|
|
158
|
-
|
|
167
|
+
Claude calls list_workflows and shows current status, Assistant session
|
|
168
|
+
availability, template version drift, and realtime freshness or health.
|
|
159
169
|
|
|
160
170
|
> You: Update wf_abc123 — add an "availability" field to the schema
|
|
161
171
|
and rename "cost" to "price".
|