@withpica/mcp-server 2.77.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,8 +11,49 @@ 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
+
42
+ ## [2.76.0] - 2026-06-15
43
+
44
+ Uniform deletion contract surfaced to agents. `pica_works_delete` and
45
+ `pica_recordings_delete` now report whether the entity was deleted or archived,
46
+ what was auto-unlinked, and — when refused — exactly what to remove first.
47
+
14
48
  ### Changed
15
49
 
50
+ - **`pica_works_delete`** description states the contract (auto-unlinks from
51
+ releases; archives instead of destroying when it has identifiers/dependents);
52
+ result renders via `formatDeletion` (status + detached).
53
+ - **`pica_recordings_delete`** description states the contract (credits/splits
54
+ removed with it; refused with a blocking list if it is a release track / has
55
+ payments / is in a sync placement); result renders via `formatDeletion`.
56
+ - **`pica_works_bulk_delete`** description notes each work follows the same rule.
16
57
  - **`pica_releases_list`** gains `query` (title substring), `upc` (exact), and
17
58
  `spotify_album_id` (exact) lookup filters — locate a release by
18
59
  title/UPC/album instead of paging the whole catalogue (feedback 9a7a50f7).