@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 +41 -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 -1
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/forbidden-keywords.d.ts +1 -1
- package/dist/tools/forbidden-keywords.js +1 -1
- package/dist/tools/import.d.ts +0 -1
- package/dist/tools/import.d.ts.map +1 -1
- package/dist/tools/import.js +1 -74
- package/dist/tools/import.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/metadata.d.ts.map +1 -1
- package/dist/tools/metadata.js +0 -11
- package/dist/tools/metadata.js.map +1 -1
- package/dist/tools/public-filter.d.ts.map +1 -1
- package/dist/tools/public-filter.js +0 -1
- package/dist/tools/public-filter.js.map +1 -1
- package/dist/tools/recovery-hints.d.ts.map +1 -1
- package/dist/tools/recovery-hints.js +0 -7
- package/dist/tools/recovery-hints.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
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
|