@withpica/mcp-server 2.93.0 → 2.94.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 +39 -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/index.d.ts.map +1 -1
- package/dist/resources/index.js +25 -0
- package/dist/resources/index.js.map +1 -1
- package/dist/skills/skills.generated.d.ts.map +1 -1
- package/dist/skills/skills.generated.js +12 -1
- package/dist/skills/skills.generated.js.map +1 -1
- package/dist/tools/audio-files.d.ts.map +1 -1
- package/dist/tools/audio-files.js +9 -1
- package/dist/tools/audio-files.js.map +1 -1
- package/dist/tools/bulk.d.ts.map +1 -1
- package/dist/tools/bulk.js +10 -7
- package/dist/tools/bulk.js.map +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,45 @@ 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.94.0] - 2026-07-16
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **`register-from-your-daw` MCP skill (ADR-293 agent lane).** Guides an agent
|
|
17
|
+
through capturing the open DAW session via the user's own DAW MCP server
|
|
18
|
+
(AbletonMCP et al.) and registering the work in PICA — session-read
|
|
19
|
+
patterns, the Log.txt/.als fallback when the bridge is down, title-suffix
|
|
20
|
+
hygiene, and read-merge-write for `works.metadata`. Field-proven on two
|
|
21
|
+
real registrations the day it shipped. Served as a `skill://` resource on
|
|
22
|
+
BOTH transports; four older skills' resources were backfilled onto the
|
|
23
|
+
hosted transport in the same change.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- **The whole `pica_users_*` tool family works again** (get_my_profile,
|
|
28
|
+
find_by_handle, set_handle, set_bio, set_avatar_url,
|
|
29
|
+
import_bio_from_person) — every call crashed with `UNKNOWN_ERROR: Cannot
|
|
30
|
+
read properties of undefined` due to an envelope double-unwrap inside
|
|
31
|
+
`@withpica/mcp-sdk`'s UsersResource. Requires `@withpica/mcp-sdk@^3.7.2`
|
|
32
|
+
(dependency bumped). Same SDK release also revives `prefix_intel` on
|
|
33
|
+
works/recordings inspect and the `releases` section of
|
|
34
|
+
`pica_works_inspect`. No input-schema changes — no OpenAI connector
|
|
35
|
+
resubmission.
|
|
36
|
+
- **Audio-files list envelope normalised** so `probable_match` on unassigned
|
|
37
|
+
audio surfaces cleanly through `pica_audio_query`.
|
|
38
|
+
|
|
39
|
+
## [2.93.1] - 2026-07-14
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
|
|
43
|
+
- **`pica_works_bulk_link_artist` dry-run no longer returns a false preview.**
|
|
44
|
+
The preview now routes through the same endpoint (with `dryRun=true`) as the
|
|
45
|
+
commit, so it shares the commit's person-resolution and validation — a person
|
|
46
|
+
the commit cannot find is refused at preview time instead of reporting an
|
|
47
|
+
optimistic "would link N". Requires `@withpica/mcp-sdk@^3.7.1`. The tool's
|
|
48
|
+
input schema is unchanged, so this does not trigger an OpenAI connector
|
|
49
|
+
resubmission.
|
|
50
|
+
|
|
12
51
|
## [2.93.0] - 2026-07-12
|
|
13
52
|
|
|
14
53
|
### Removed
|