@withpica/mcp-server 2.88.0 → 2.88.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 -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/tools/agreements.d.ts.map +1 -1
- package/dist/tools/agreements.js +0 -10
- package/dist/tools/agreements.js.map +1 -1
- package/dist/tools/people.js +1 -1
- package/dist/tools/people.js.map +1 -1
- package/dist/tools/recordings.d.ts +8 -0
- package/dist/tools/recordings.d.ts.map +1 -1
- package/dist/tools/recordings.js +45 -6
- package/dist/tools/recordings.js.map +1 -1
- package/dist/tools/recovery-hints.d.ts.map +1 -1
- package/dist/tools/recovery-hints.js +17 -0
- package/dist/tools/recovery-hints.js.map +1 -1
- package/dist/tools/search.d.ts.map +1 -1
- package/dist/tools/search.js +17 -2
- package/dist/tools/search.js.map +1 -1
- package/dist/tools/works.d.ts +7 -0
- package/dist/tools/works.d.ts.map +1 -1
- package/dist/tools/works.js +38 -7
- package/dist/tools/works.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
> matching entry here in the same commit. See the project's "npm publish
|
|
10
10
|
> discipline" memory entry for the enforcement rationale.
|
|
11
11
|
|
|
12
|
-
## [
|
|
12
|
+
## [2.88.2] - 2026-07-05
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- `pica_search_all` now accepts `q` as an alias for `query`; `pica_recordings_inspect`
|
|
17
|
+
accepts `isrc` and `pica_works_inspect` accepts `iswc` as entry points (each
|
|
18
|
+
resolved to the entity server-side by exact match on the normalized code,
|
|
19
|
+
`NOT_FOUND` when nothing carries it). All three are enforced via
|
|
20
|
+
`requiredOneOf`, so a `{q:"..."}` / `{isrc:"..."}` / `{iswc:"..."}` call is no
|
|
21
|
+
longer hard-rejected by the `pica_execute` dispatcher with
|
|
22
|
+
`WRAPPED_ARGS_MISSING`. Fixes the in-app assistant roadblock of 2026-07-05,
|
|
23
|
+
where the model repeatedly called search with `q` and inspect with `isrc`; the
|
|
24
|
+
rejections cascaded into hallucinated-UUID `NOT_FOUND`s because it never
|
|
25
|
+
resolved the real ids. Resolvers query the search backend with the normalized
|
|
26
|
+
(dash/dot-free) code so a formatted `UK-JUX-17-00002` / `T-034.524.680-1` still
|
|
27
|
+
matches the dash-free stored value.
|
|
28
|
+
|
|
29
|
+
## [2.88.1] - 2026-07-04
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- `TEMPLATE_RENDER_FAILED` recovery hint for `pica_agreements_create_from_template`
|
|
34
|
+
— the backing route now returns a typed 400 (bad `template_id` / missing
|
|
35
|
+
required variables) instead of a generic 500, so the tool surfaces an
|
|
36
|
+
actionable next step (query templates via `pica_agreement_types_query`).
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- `expires_in_days` on `pica_agreements_create_from_template` (it was a
|
|
41
|
+
documented no-op). A draft has no signing window; set the expiry at
|
|
42
|
+
`pica_agreements_send_for_signature`, which keeps its own `expires_in_days`.
|
|
13
43
|
|
|
14
44
|
## [2.88.0] - 2026-07-04
|
|
15
45
|
|