@kadoa/mcp 0.5.26 → 0.5.30
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 +4 -4
- package/dist/index.js +1372 -1217
- package/package.json +2 -2
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 |
|
|
@@ -164,8 +164,8 @@ workflow ID for follow-up with get_workflow or fetch_data.
|
|
|
164
164
|
```
|
|
165
165
|
> You: List my workflows.
|
|
166
166
|
|
|
167
|
-
Claude calls list_workflows and shows
|
|
168
|
-
|
|
167
|
+
Claude calls list_workflows and shows current status, Assistant session
|
|
168
|
+
availability, template version drift, and realtime freshness or health.
|
|
169
169
|
|
|
170
170
|
> You: Update wf_abc123 — add an "availability" field to the schema
|
|
171
171
|
and rename "cost" to "price".
|
|
@@ -277,7 +277,7 @@ Relevant files in `kadoa-backend`:
|
|
|
277
277
|
### Production release
|
|
278
278
|
|
|
279
279
|
1. Merge PRs to `main` using Conventional Commits (`feat:`, `fix:`, etc.). Release Please opens/maintains a `chore(main): release mcp x.y.z` PR.
|
|
280
|
-
2. Merge the release PR. The [`release-please.yml`](.github/workflows/release-please.yml) workflow tags, drafts a GitHub Release, and publishes to npm (`latest` dist-tag).
|
|
280
|
+
2. Merge the release PR. The [`release-please.yml`](.github/workflows/release-please.yml) workflow tags, drafts a GitHub Release, and publishes to npm through GitHub Actions OIDC trusted publishing (`latest` dist-tag).
|
|
281
281
|
3. After npm publication, `release-please.yml` opens or updates a deterministic PR in `kadoa-backend` that bumps `infra/docker/mcp/package.json` and refreshes `bun.lock`. The PR validates a frozen production install and Docker image build, and remains manually mergeable.
|
|
282
282
|
4. Merge the backend PR to `main`. CI (`main-build-deploy.yml`) builds and pushes `europe-west3-docker.pkg.dev/oceanic-base-310208/kadoa-artifacts/mcp-server:<IMAGE_TAG>` (tag shown in the build summary).
|
|
283
283
|
5. Trigger the **Deploy to Production** workflow ([`deploy-prod.yml`](https://github.com/kadoa-org/kadoa-backend/actions/workflows/deploy-prod.yml)) with:
|