@kadoa/mcp 0.6.0 → 0.6.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.
- package/README.md +5 -0
- package/dist/index.js +13386 -12218
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -75,7 +75,11 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
75
75
|
| `stop_workflow_assistant` | Stop active Assistant work without deleting or replacing the workflow |
|
|
76
76
|
| `get_workflow_strategy` | Get the current customer-safe extraction/build strategy for an Assistant or custom-script workflow |
|
|
77
77
|
| `get_workflow_history` | Get the workflow's configuration revision history (audit log) — who changed it, when, from which channel, and a `changedFields` summary per revision |
|
|
78
|
+
| `list_activity` | List the team's Activity log (audit trail) across all workflows and resources: actor email, resource name, action, interface, timestamp, change summary; filter by time window, user, workflow, action, interface, resource type. Use `get_workflow_history` for one workflow's config diffs |
|
|
78
79
|
| `list_workflow_runs` | List a workflow's execution run history (status, start/finish, record count, errors); filter by outcome and paginate |
|
|
80
|
+
| `get_usage` | Current plan usage for the active team or its organization: workflow slot quota and usage, billable and active workflows, extracted rows, billing period and renewal date |
|
|
81
|
+
| `get_usage_history` | Daily usage history (active workflows, billing-period cumulative, or daily activity) for up to 366 days |
|
|
82
|
+
| `get_observability` | Team-wide workflow health for a window of days: uptime, failed runs, MTTR, records delivered, health counts, and a ranked list of down or degraded workflows (the Observability page data) |
|
|
79
83
|
| `run_workflow` | Execute a workflow |
|
|
80
84
|
| `fetch_data` | Get extracted data from a workflow |
|
|
81
85
|
| `delete_workflow` | Delete a workflow |
|
|
@@ -94,6 +98,7 @@ For detailed customer guidance, see the [Kadoa documentation](https://docs.kadoa
|
|
|
94
98
|
- **Run history:** `list_workflow_runs` filters by `status` (`success`, `failed`, or `in_progress`) and supports 1-based `page` and `limit` pagination.
|
|
95
99
|
- **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`.
|
|
96
100
|
- **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`.
|
|
101
|
+
- **Usage:** `get_usage` reports slots and rows, not credits. `usedThisPeriod` resets at the renewal date; `usedActive` is the current slot count; `usedAllTime` never resets. Pass `scope: "organization"` to match the Usage page for organization members.
|
|
97
102
|
|
|
98
103
|
## Usage Examples
|
|
99
104
|
|