@withpica/mcp-server 2.77.0 → 2.79.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 +43 -0
- 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/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +10 -0
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/index.d.ts +18 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +7 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/recordings.d.ts.map +1 -1
- package/dist/tools/recordings.js +25 -7
- package/dist/tools/recordings.js.map +1 -1
- package/dist/tools/works.d.ts.map +1 -1
- package/dist/tools/works.js +55 -30
- package/dist/tools/works.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,8 +11,51 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [2.79.0] - 2026-06-15
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **`pica_execute` annotations** now advertise `readOnlyHint: false` and
|
|
19
|
+
`openWorldHint: true`, matching the dispatcher's real behaviour — it can route
|
|
20
|
+
to write/destructive/external tools, so claiming read-only / closed-world was
|
|
21
|
+
wrong (and was flagged in OpenAI app review). The scope `tier` stays `"read"`
|
|
22
|
+
so a read-scoped key can still dispatch read tools through it; real scope and
|
|
23
|
+
destructive confirmation remain enforced on the **wrapped** tool, not the
|
|
24
|
+
wrapper. Implemented via a new advisory-only `annotationOverrides` field on the
|
|
25
|
+
tool definition (completes the ADR-230 tier→hint coupling for the one tool
|
|
26
|
+
whose client-facing hint must differ from its scope tier). No enforcement
|
|
27
|
+
change.
|
|
28
|
+
|
|
29
|
+
## [2.78.0] - 2026-06-15
|
|
30
|
+
|
|
31
|
+
Carries the uniform deletion contract MCP rendering (originally 2.76.0) forward
|
|
32
|
+
on top of 2.77.0's `pica_import_from_spotify` removal. 2.76.0 (deletion contract)
|
|
33
|
+
and 2.77.0 (import removal) were published from parallel branches; 2.77.0 was
|
|
34
|
+
built before this branch merged, so it did not include the deletion rendering —
|
|
35
|
+
this release re-establishes it on top of the removal.
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- **`pica_works_delete` / `pica_recordings_delete`** render the uniform delete
|
|
40
|
+
outcome via `formatDeletion` (status `deleted`/`archived`/refused + what was
|
|
41
|
+
unlinked + how to fully delete); descriptions state the contract. Re-applied
|
|
42
|
+
here after 2.77.0 (parallel branch) shipped without them.
|
|
43
|
+
|
|
44
|
+
## [2.76.0] - 2026-06-15
|
|
45
|
+
|
|
46
|
+
Uniform deletion contract surfaced to agents. `pica_works_delete` and
|
|
47
|
+
`pica_recordings_delete` now report whether the entity was deleted or archived,
|
|
48
|
+
what was auto-unlinked, and — when refused — exactly what to remove first.
|
|
49
|
+
|
|
14
50
|
### Changed
|
|
15
51
|
|
|
52
|
+
- **`pica_works_delete`** description states the contract (auto-unlinks from
|
|
53
|
+
releases; archives instead of destroying when it has identifiers/dependents);
|
|
54
|
+
result renders via `formatDeletion` (status + detached).
|
|
55
|
+
- **`pica_recordings_delete`** description states the contract (credits/splits
|
|
56
|
+
removed with it; refused with a blocking list if it is a release track / has
|
|
57
|
+
payments / is in a sync placement); result renders via `formatDeletion`.
|
|
58
|
+
- **`pica_works_bulk_delete`** description notes each work follows the same rule.
|
|
16
59
|
- **`pica_releases_list`** gains `query` (title substring), `upc` (exact), and
|
|
17
60
|
`spotify_album_id` (exact) lookup filters — locate a release by
|
|
18
61
|
title/UPC/album instead of paging the whole catalogue (feedback 9a7a50f7).
|