@withpica/mcp-server 2.88.1 → 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 CHANGED
@@ -9,7 +9,22 @@ 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
- ## [Unreleased]
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.
13
28
 
14
29
  ## [2.88.1] - 2026-07-04
15
30