@withpica/mcp-server 2.95.4 → 2.96.1

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "disabledMcpjsonServers": [
3
+ "pica-directory"
4
+ ]
5
+ }
package/CHANGELOG.md CHANGED
@@ -11,6 +11,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
+ ## [2.96.1] - 2026-08-31
15
+
16
+ First npm release since 2.95.4 — carries everything below (the discover
17
+ changes have been live on the hosted connector since promote #2061; stdio
18
+ clients get them here). 2.96.0 was published from an unmerged branch and is
19
+ deprecated; do not use it.
20
+
21
+ ### Fixed
22
+
23
+ - **`pica_import_validate` surfaces warnings on a VALID result.** A warning
24
+ does not make a row invalid, so `valid: true` can carry warnings — e.g. a
25
+ works CSV mapped to `release_year` (release-level data; a newly created
26
+ work has no release) is receipted at row 0. The tool used to answer "All N
27
+ rows are valid. Ready to import" and drop the warning, so the agent
28
+ executed blind (2026-08-30 production finding, PR #2072 / promote #2074).
29
+ Warnings now ride the valid branch in the text and as `warnings` in the
30
+ structured data. The SDK's `ImportValidation.errors` rows carry the wire
31
+ field `error` (with `message` kept for normalising callers).
32
+
33
+ ### Changed
34
+
35
+ - **The ten tools slated for removal in 2.96.0 remain, `removal_target`
36
+ extended to 2.97.0** (`pica_recording_credits_bulk_update`,
37
+ `pica_statements_list`, `pica_documents_list`, `pica_documents_read`,
38
+ `pica_projects_list`, `pica_releases_list`, `pica_releases_get`,
39
+ `pica_releases_bulk_attach_tracks`,
40
+ `pica_releases_attach_track_by_identifier`, `pica_notes_list`). This
41
+ release exists to ship the validate-warnings fix; removing tools is its
42
+ own change with its own review, not a rider on it.
43
+
44
+ - **`pica_discover({ query })` no longer scores the asker's own words as the entity.** Determiners, pronouns, prepositions and light verbs (`my`, `the`, `get`, `list`, `find` …) are dropped before ranking. "start my music catalogue and import my songs" led with three `pica_my_*` tools because "my" matched their domain segment; it now leads with the import tools. A query made only of such words matches nothing.
45
+ - **Query mode carries the fresh-org import line.** The ADR-294 hint ("on a fresh or empty org, run `pica_dashboard_briefing` first … paste a spotify album or playlist link") was only on the no-args category map; it is now on every query response, hit or miss.
46
+ - **Tools the caller cannot run on this connection rank last and are flagged.** Shortlist rows and `pica_tool_details` gain `callable_on_this_surface: false` plus a `surface_note` when the tool is on another surface (stdio / lobby) or needs a scope the connection does not hold — the judgement the HTTP dispatcher enforces at `pica_execute` time (installed only while the inner gate is in enforce mode). An existing scope or destructive-tier `callable_note` is kept beside it, and the `invoke` line on a flagged detail says the call will be refused instead of "pica_execute executes every tool returned here". Rows for callable tools are unchanged (no new keys). A capped shortlist keeps at least five tail rows for flagged tools and lets them fill what visible rows leave, so a gated capability reads as gated, not missing, and a narrow scope never shrinks the list. Query-mode `cache_until` is now one hour (the rows are per-connection); the full map keeps its day.
47
+
14
48
  ## [2.95.4] - 2026-08-25
15
49
 
16
50
  An agent-readability release. Nothing about auth, tiers or tool behaviour changes; what changes is what a tool **tells** an agent about itself, and the shape of a refusal.