@withpica/mcp-server 2.93.1 → 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.
Files changed (53) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/dist/lib/changelog.generated.d.ts +2 -2
  3. package/dist/lib/changelog.generated.d.ts.map +1 -1
  4. package/dist/lib/changelog.generated.js +2 -2
  5. package/dist/lib/changelog.generated.js.map +1 -1
  6. package/dist/resources/index.d.ts.map +1 -1
  7. package/dist/resources/index.js +25 -0
  8. package/dist/resources/index.js.map +1 -1
  9. package/dist/resources/required-schemas.generated.d.ts +9 -8
  10. package/dist/resources/required-schemas.generated.d.ts.map +1 -1
  11. package/dist/resources/required-schemas.generated.js +11 -17
  12. package/dist/resources/required-schemas.generated.js.map +1 -1
  13. package/dist/resources/required-schemas.source.d.ts.map +1 -1
  14. package/dist/resources/required-schemas.source.js +9 -8
  15. package/dist/resources/required-schemas.source.js.map +1 -1
  16. package/dist/skills/skills.generated.d.ts.map +1 -1
  17. package/dist/skills/skills.generated.js +14 -3
  18. package/dist/skills/skills.generated.js.map +1 -1
  19. package/dist/tools/audio-files.d.ts +8 -0
  20. package/dist/tools/audio-files.d.ts.map +1 -1
  21. package/dist/tools/audio-files.js +143 -4
  22. package/dist/tools/audio-files.js.map +1 -1
  23. package/dist/tools/collaborators.d.ts.map +1 -1
  24. package/dist/tools/collaborators.js +44 -4
  25. package/dist/tools/collaborators.js.map +1 -1
  26. package/dist/tools/credits.d.ts.map +1 -1
  27. package/dist/tools/credits.js +21 -0
  28. package/dist/tools/credits.js.map +1 -1
  29. package/dist/tools/dashboard.d.ts +11 -4
  30. package/dist/tools/dashboard.d.ts.map +1 -1
  31. package/dist/tools/dashboard.js +14 -7
  32. package/dist/tools/dashboard.js.map +1 -1
  33. package/dist/tools/discovery.d.ts.map +1 -1
  34. package/dist/tools/discovery.js +7 -1
  35. package/dist/tools/discovery.js.map +1 -1
  36. package/dist/tools/index.d.ts.map +1 -1
  37. package/dist/tools/index.js +12 -1
  38. package/dist/tools/index.js.map +1 -1
  39. package/dist/tools/metadata.d.ts.map +1 -1
  40. package/dist/tools/metadata.js +26 -10
  41. package/dist/tools/metadata.js.map +1 -1
  42. package/dist/tools/recordings.d.ts.map +1 -1
  43. package/dist/tools/recordings.js +5 -0
  44. package/dist/tools/recordings.js.map +1 -1
  45. package/dist/tools/recovery-hints.d.ts.map +1 -1
  46. package/dist/tools/recovery-hints.js +44 -0
  47. package/dist/tools/recovery-hints.js.map +1 -1
  48. package/dist/tools/works.d.ts.map +1 -1
  49. package/dist/tools/works.js +19 -1
  50. package/dist/tools/works.js.map +1 -1
  51. package/package.json +2 -2
  52. package/scripts/build-required-schemas.ts +37 -11
  53. package/server.json +2 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,59 @@ 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
+
38
+ ## [2.94.0] - 2026-07-16
39
+
40
+ ### Added
41
+
42
+ - **`register-from-your-daw` MCP skill (ADR-293 agent lane).** Guides an agent
43
+ through capturing the open DAW session via the user's own DAW MCP server
44
+ (AbletonMCP et al.) and registering the work in PICA — session-read
45
+ patterns, the Log.txt/.als fallback when the bridge is down, title-suffix
46
+ hygiene, and read-merge-write for `works.metadata`. Field-proven on two
47
+ real registrations the day it shipped. Served as a `skill://` resource on
48
+ BOTH transports; four older skills' resources were backfilled onto the
49
+ hosted transport in the same change.
50
+
51
+ ### Fixed
52
+
53
+ - **The whole `pica_users_*` tool family works again** (get_my_profile,
54
+ find_by_handle, set_handle, set_bio, set_avatar_url,
55
+ import_bio_from_person) — every call crashed with `UNKNOWN_ERROR: Cannot
56
+ read properties of undefined` due to an envelope double-unwrap inside
57
+ `@withpica/mcp-sdk`'s UsersResource. Requires `@withpica/mcp-sdk@^3.7.2`
58
+ (dependency bumped). Same SDK release also revives `prefix_intel` on
59
+ works/recordings inspect and the `releases` section of
60
+ `pica_works_inspect`. No input-schema changes — no OpenAI connector
61
+ resubmission.
62
+ - **Audio-files list envelope normalised** so `probable_match` on unassigned
63
+ audio surfaces cleanly through `pica_audio_query`.
64
+
12
65
  ## [2.93.1] - 2026-07-14
13
66
 
14
67
  ### Fixed