@withpica/mcp-server 2.65.0 → 2.67.0
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/CHANGELOG.md +25 -0
- package/dist/apps/generated/shared-bundle.d.ts +1 -1
- package/dist/apps/generated/shared-bundle.d.ts.map +1 -1
- package/dist/apps/generated/shared-bundle.js +1 -1
- package/dist/apps/generated/shared-bundle.js.map +1 -1
- package/dist/lib/changelog.generated.d.ts +2 -2
- package/dist/lib/changelog.generated.d.ts.map +1 -1
- package/dist/lib/changelog.generated.js +2 -2
- package/dist/lib/changelog.generated.js.map +1 -1
- package/dist/resources/required-schemas.generated.d.ts +1 -1
- package/dist/resources/required-schemas.generated.d.ts.map +1 -1
- package/dist/resources/required-schemas.generated.js +2 -1
- package/dist/resources/required-schemas.generated.js.map +1 -1
- package/dist/tools/approvals.d.ts +29 -0
- package/dist/tools/approvals.d.ts.map +1 -0
- package/dist/tools/approvals.js +99 -0
- package/dist/tools/approvals.js.map +1 -0
- package/dist/tools/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +7 -2
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/enrichment.d.ts.map +1 -1
- package/dist/tools/enrichment.js +30 -8
- package/dist/tools/enrichment.js.map +1 -1
- package/dist/tools/index.d.ts +13 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +6 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/metadata.d.ts.map +1 -1
- package/dist/tools/metadata.js +6 -0
- package/dist/tools/metadata.js.map +1 -1
- package/dist/tools/people.d.ts.map +1 -1
- package/dist/tools/people.js +9 -1
- package/dist/tools/people.js.map +1 -1
- package/dist/tools/signup.d.ts.map +1 -1
- package/dist/tools/signup.js +13 -0
- package/dist/tools/signup.js.map +1 -1
- package/dist/tools/team.js +1 -1
- package/dist/tools/team.js.map +1 -1
- package/package.json +3 -3
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [2.67.0] - 2026-06-01
|
|
15
|
+
|
|
16
|
+
Enrichment field-level source ranking surfaces on the resolve tools. Requires `@withpica/mcp-sdk` ^1.36.0.
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- **`force` on `pica_resolve_work` + `pica_resolve_recording`** — force a re-enrich past the per-source idempotence stamps. Safe by construction: the field-level authority gate never clobbers a human-entered, higher-authority, or pre-provenance (unprovenanced) value, so a forced re-run only fills gaps and upgrades lower-ranked automated values.
|
|
21
|
+
- **Overwrite receipts on both resolve tools** — the structured result now carries `overwrote[]` (a higher-authority source replaced a lower-ranked value, with old/new source) and `skipped_lower_authority[]` (a source was refused because the existing value out-ranked it, equalled it, or was a human/verified/unprovenanced value). The summary line reports the overwrote/kept counts.
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- **Resolve tool descriptions** now explain the authority gate (higher-authority sources win, human-entered and pre-provenance values are locked) and the two receipt arrays.
|
|
26
|
+
|
|
27
|
+
## [2.66.0] - 2026-06-01
|
|
28
|
+
|
|
29
|
+
ADR-250 human-in-the-loop approval goes live, plus the close-out batch carried by this release.
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- **`pica_approval_status`** — read-only poll for an out-of-band human approval. When a delegated-agent destructive write is deferred, the dispatcher returns a `human_approval_required` envelope carrying an `approval_reference`; pass that as `approval_id` to check whether the grant owner has decided (`pending` / `approved` / `denied` / `expired` / `executed` / `failed`) and when/how. Ownership is enforced server-side — a foreign approval comes back as `not_found`, never a leak. ADR-250 PR-c.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- **ADR-250 human-in-the-loop approval gate is active.** `pica_people_bulk_delete` now carries `approvalMode: "human"`: a delegated-agent caller proposes the deletion, the grant owner approves out-of-band, and PICA replays the frozen params server-side. Session and first-party-key callers fall through to the existing `dry_run`/destructive path unchanged. The tool stays connector-reachable rather than blanket-excluded.
|
|
38
|
+
|
|
14
39
|
## [2.65.0] - 2026-05-30
|
|
15
40
|
|
|
16
41
|
### Added
|