@withpica/mcp-server 2.85.1 → 2.86.1
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 +31 -0
- 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/tools/discovery.d.ts +22 -1
- package/dist/tools/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +77 -3
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/documents.d.ts.map +1 -1
- package/dist/tools/documents.js +12 -2
- package/dist/tools/documents.js.map +1 -1
- package/dist/tools/duplicates.d.ts.map +1 -1
- package/dist/tools/duplicates.js +12 -2
- package/dist/tools/duplicates.js.map +1 -1
- package/dist/tools/index.d.ts +15 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +44 -11
- package/dist/tools/index.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/.claude/settings.local.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [2.86.1] - 2026-07-03
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **`pica_execute`** — an unknown wrapped tool name is now refused
|
|
19
|
+
pre-dispatch with `UNKNOWN_TOOL`, the three closest registered tool
|
|
20
|
+
names as `suggestions`, and a pointer to `pica_tool_details` — replacing
|
|
21
|
+
the bare `EXECUTION_ERROR "Tool not found"` that left agents retrying
|
|
22
|
+
guessed name variations blind. The `EXECUTION_ERROR` pass-through
|
|
23
|
+
envelope also mirrors its code/message into `structuredContent`.
|
|
24
|
+
- **Audit telemetry** — dispatcher and executor error envelopes returned as
|
|
25
|
+
content-text JSON (without `structuredContent`) now have their
|
|
26
|
+
`error_code`/`error_message` lifted into the mcp audit event, so
|
|
27
|
+
error-grouping pipelines see a code instead of an opaque error row
|
|
28
|
+
(26 code-less ChatGPT dispatcher failures in 14 days were invisible to
|
|
29
|
+
ops triage).
|
|
30
|
+
|
|
31
|
+
## [2.86.0] - 2026-07-02
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- **`pica_merge_duplicates`** — now `approvalMode:"human"` (ADR-288): a
|
|
36
|
+
delegated-agent caller (OAuth connector / `pica_grant_*`) no longer gets
|
|
37
|
+
refused — the call freezes into a pending human approval, the org owner
|
|
38
|
+
approves out-of-band, and PICA replays the frozen merge server-side.
|
|
39
|
+
Blocked merges (custody provenance, distinct-ISRC losers, tunecode
|
|
40
|
+
collision) fail the approval cleanly with the blocking reason and zero
|
|
41
|
+
partial mutation. Resource scope corrected `admin` → `write:catalog`
|
|
42
|
+
(matching the backing route) so catalog-scoped delegated agents can
|
|
43
|
+
propose; first-party callers still need the destructive tier as before.
|
|
44
|
+
|
|
14
45
|
## [2.85.1] - 2026-07-01
|
|
15
46
|
|
|
16
47
|
### Changed
|