@withpica/mcp-server 2.88.1 → 2.89.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 CHANGED
@@ -9,7 +9,31 @@ 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.89.0] - 2026-07-06
13
+
14
+ ### Changed
15
+
16
+ - Picks up `@withpica/mcp-sdk` 3.4.0: `pica_recordings_query` free-text search now
17
+ resolves through the server-side unified matcher, so recordings are findable by
18
+ `artist_name`/ISRC, not just title (and without the 200-row client-filter
19
+ ceiling). No tool-surface changes.
20
+
21
+ ## [2.88.2] - 2026-07-05
22
+
23
+ ### Changed
24
+
25
+ - `pica_search_all` now accepts `q` as an alias for `query`; `pica_recordings_inspect`
26
+ accepts `isrc` and `pica_works_inspect` accepts `iswc` as entry points (each
27
+ resolved to the entity server-side by exact match on the normalized code,
28
+ `NOT_FOUND` when nothing carries it). All three are enforced via
29
+ `requiredOneOf`, so a `{q:"..."}` / `{isrc:"..."}` / `{iswc:"..."}` call is no
30
+ longer hard-rejected by the `pica_execute` dispatcher with
31
+ `WRAPPED_ARGS_MISSING`. Fixes the in-app assistant roadblock of 2026-07-05,
32
+ where the model repeatedly called search with `q` and inspect with `isrc`; the
33
+ rejections cascaded into hallucinated-UUID `NOT_FOUND`s because it never
34
+ resolved the real ids. Resolvers query the search backend with the normalized
35
+ (dash/dot-free) code so a formatted `UK-JUX-17-00002` / `T-034.524.680-1` still
36
+ matches the dash-free stored value.
13
37
 
14
38
  ## [2.88.1] - 2026-07-04
15
39