@withpica/mcp-server 2.76.0 → 2.78.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
@@ -11,6 +11,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
+ ### Fixed
15
+
16
+ - **`pica_execute` annotations** now advertise `readOnlyHint: false` and
17
+ `openWorldHint: true`, matching the dispatcher's real behaviour — it can route
18
+ to write/destructive/external tools, so claiming read-only / closed-world was
19
+ wrong (and was flagged in OpenAI app review). The scope `tier` stays `"read"`
20
+ so a read-scoped key can still dispatch read tools through it; real scope and
21
+ destructive confirmation remain enforced on the **wrapped** tool, not the
22
+ wrapper. Implemented via a new advisory-only `annotationOverrides` field on the
23
+ tool definition (completes the ADR-230 tier→hint coupling for the one tool
24
+ whose client-facing hint must differ from its scope tier). No enforcement
25
+ change.
26
+
27
+ ## [2.78.0] - 2026-06-15
28
+
29
+ Carries the uniform deletion contract MCP rendering (originally 2.76.0) forward
30
+ on top of 2.77.0's `pica_import_from_spotify` removal. 2.76.0 (deletion contract)
31
+ and 2.77.0 (import removal) were published from parallel branches; 2.77.0 was
32
+ built before this branch merged, so it did not include the deletion rendering —
33
+ this release re-establishes it on top of the removal.
34
+
35
+ ### Changed
36
+
37
+ - **`pica_works_delete` / `pica_recordings_delete`** render the uniform delete
38
+ outcome via `formatDeletion` (status `deleted`/`archived`/refused + what was
39
+ unlinked + how to fully delete); descriptions state the contract. Re-applied
40
+ here after 2.77.0 (parallel branch) shipped without them.
41
+
14
42
  ## [2.76.0] - 2026-06-15
15
43
 
16
44
  Uniform deletion contract surfaced to agents. `pica_works_delete` and
@@ -30,6 +58,19 @@ what was auto-unlinked, and — when refused — exactly what to remove first.
30
58
  `spotify_album_id` (exact) lookup filters — locate a release by
31
59
  title/UPC/album instead of paging the whole catalogue (feedback 9a7a50f7).
32
60
 
61
+ ## [2.77.0] - 2026-06-15
62
+
63
+ ### Removed
64
+
65
+ - **`pica_import_from_spotify`** (BREAKING) — removed after a multi-release
66
+ deprecation window. It was superseded by **`pica_import_streaming_link`**,
67
+ which offers the same two-step preview/confirm flow and output and also
68
+ supports Deezer. Callers passing a Spotify URL should switch to
69
+ `pica_import_streaming_link` with the `url` argument (the only rename is
70
+ `spotify_url` → `url`). Shipped as its own deliberate breaking PR rather than
71
+ bundled into an unrelated release, per the standing removal plan recorded in
72
+ `TOOL_METADATA`. (2.76.0 = the uniform deletion contract, shipped separately.)
73
+
33
74
  ## [2.75.0] - 2026-06-15
34
75
 
35
76
  ### Added