@withpica/mcp-server 2.94.0 → 2.95.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 +26 -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/resources/required-schemas.generated.d.ts +9 -8
- package/dist/resources/required-schemas.generated.d.ts.map +1 -1
- package/dist/resources/required-schemas.generated.js +11 -17
- package/dist/resources/required-schemas.generated.js.map +1 -1
- package/dist/resources/required-schemas.source.d.ts.map +1 -1
- package/dist/resources/required-schemas.source.js +9 -8
- package/dist/resources/required-schemas.source.js.map +1 -1
- package/dist/skills/skills.generated.js +2 -2
- package/dist/skills/skills.generated.js.map +1 -1
- package/dist/tools/audio-files.d.ts +8 -0
- package/dist/tools/audio-files.d.ts.map +1 -1
- package/dist/tools/audio-files.js +134 -3
- package/dist/tools/audio-files.js.map +1 -1
- package/dist/tools/collaborators.d.ts.map +1 -1
- package/dist/tools/collaborators.js +44 -4
- package/dist/tools/collaborators.js.map +1 -1
- package/dist/tools/credits.d.ts.map +1 -1
- package/dist/tools/credits.js +21 -0
- package/dist/tools/credits.js.map +1 -1
- package/dist/tools/dashboard.d.ts +11 -4
- package/dist/tools/dashboard.d.ts.map +1 -1
- package/dist/tools/dashboard.js +14 -7
- package/dist/tools/dashboard.js.map +1 -1
- package/dist/tools/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +7 -1
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +12 -1
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/metadata.d.ts.map +1 -1
- package/dist/tools/metadata.js +26 -10
- package/dist/tools/metadata.js.map +1 -1
- package/dist/tools/recordings.d.ts.map +1 -1
- package/dist/tools/recordings.js +5 -0
- package/dist/tools/recordings.js.map +1 -1
- package/dist/tools/recovery-hints.d.ts.map +1 -1
- package/dist/tools/recovery-hints.js +44 -0
- package/dist/tools/recovery-hints.js.map +1 -1
- package/dist/tools/works.d.ts.map +1 -1
- package/dist/tools/works.js +19 -1
- package/dist/tools/works.js.map +1 -1
- package/package.json +1 -1
- package/scripts/build-required-schemas.ts +37 -11
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,32 @@ 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
|
+
## [2.95.0] - 2026-07-24
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **`pica_audio_bulk_assign_suggested`** — attach ALL orphan audio whose
|
|
17
|
+
suggested match is high-confidence (ISRC-verified, non-ambiguous) in one
|
|
18
|
+
call, instead of looping `pica_audio_assign` per file (agent feedback
|
|
19
|
+
20f592ff: an agent hand-looped over a 74-file queue). Pairings are
|
|
20
|
+
recomputed server-side at execution time — stale suggestions can't apply,
|
|
21
|
+
dismissed pairs stay excluded, title-only matches are never bulk-attached.
|
|
22
|
+
Supports `dry_run: true` preview (same server-side classification, nothing
|
|
23
|
+
persisted — ADR-180 Rule 12).
|
|
24
|
+
- **`pica_audio_dismiss_match`** — reject a suggested audio → recording
|
|
25
|
+
pairing so it never resurfaces in suggestions, the review queue, or the
|
|
26
|
+
bulk attach. The file stays attachable elsewhere; repeat dismissals are
|
|
27
|
+
no-op successes.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- **`pica_recordings_query`** now surfaces the server's zero-result
|
|
32
|
+
`recovery_hint` on empty searches (shipped in sdk 3.8.0 — the hint was
|
|
33
|
+
built server-side but dropped on the wire; ops_issue 689a8e9a).
|
|
34
|
+
- **`pica_audio_assign`** names a mis-slotted id on failure: when the value
|
|
35
|
+
passed as `work_id` is actually a recording id (or vice versa), the error
|
|
36
|
+
says so and names the right parameter — instead of an opaque FK failure.
|
|
37
|
+
|
|
12
38
|
## [2.94.0] - 2026-07-16
|
|
13
39
|
|
|
14
40
|
### Added
|