@withpica/mcp-server 2.86.0 → 2.86.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/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/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/dist/tools/people.d.ts.map +1 -1
- package/dist/tools/people.js +6 -3
- package/dist/tools/people.js.map +1 -1
- package/dist/tools/recovery-hints.d.ts.map +1 -1
- package/dist/tools/recovery-hints.js +7 -0
- package/dist/tools/recovery-hints.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.2] - 2026-07-03
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **`pica_people_query`** — the `offset` parameter is now honoured on
|
|
19
|
+
unfiltered (no query/filter) calls: paginated requests route through the
|
|
20
|
+
search path, which forwards offset and returns a real `total`. Previously
|
|
21
|
+
the plain-list path silently dropped offset and every page request
|
|
22
|
+
re-served page one, making catalogs larger than one page unreachable.
|
|
23
|
+
- **`pica_audio_identify`** — a `NOT_FOUND` now carries a recovery hint
|
|
24
|
+
naming the id class (identify takes an AUDIO FILE id, not a recording or
|
|
25
|
+
work id) and steering to `pica_audio_query`, instead of leaving agents
|
|
26
|
+
retrying stale ids blind.
|
|
27
|
+
|
|
28
|
+
## [2.86.1] - 2026-07-03
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- **`pica_execute`** — an unknown wrapped tool name is now refused
|
|
33
|
+
pre-dispatch with `UNKNOWN_TOOL`, the three closest registered tool
|
|
34
|
+
names as `suggestions`, and a pointer to `pica_tool_details` — replacing
|
|
35
|
+
the bare `EXECUTION_ERROR "Tool not found"` that left agents retrying
|
|
36
|
+
guessed name variations blind. The `EXECUTION_ERROR` pass-through
|
|
37
|
+
envelope also mirrors its code/message into `structuredContent`.
|
|
38
|
+
- **Audit telemetry** — dispatcher and executor error envelopes returned as
|
|
39
|
+
content-text JSON (without `structuredContent`) now have their
|
|
40
|
+
`error_code`/`error_message` lifted into the mcp audit event, so
|
|
41
|
+
error-grouping pipelines see a code instead of an opaque error row
|
|
42
|
+
(26 code-less ChatGPT dispatcher failures in 14 days were invisible to
|
|
43
|
+
ops triage).
|
|
44
|
+
|
|
14
45
|
## [2.86.0] - 2026-07-02
|
|
15
46
|
|
|
16
47
|
### Changed
|