@withpica/mcp-server 2.91.0 → 2.91.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.
- package/.claude/settings.local.json +5 -0
- package/CHANGELOG.md +16 -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/prompts/creator-question-atlas.d.ts.map +1 -1
- package/dist/prompts/creator-question-atlas.js +34 -0
- package/dist/prompts/creator-question-atlas.js.map +1 -1
- package/dist/tools/deprecations.js +17 -17
- package/dist/tools/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +8 -0
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/enrichment.d.ts.map +1 -1
- package/dist/tools/enrichment.js +11 -6
- package/dist/tools/enrichment.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,22 @@ 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.91.1] - 2026-07-08
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **`pica_tool_details` now returns an `invoke` pointer on every tool detail**
|
|
17
|
+
(single-tool and category paths). On the layered 3-tool surface the wrapped
|
|
18
|
+
tool is not in the caller's function list; models that fetched a schema and
|
|
19
|
+
found no matching callable concluded the tool was unavailable and gave up
|
|
20
|
+
(observed on ChatGPT). The `invoke` field spells out the execution path:
|
|
21
|
+
run via `pica_execute` with `{"tool": "<name>", "args": {...}}`.
|
|
22
|
+
- **`pica_resolve_person` / `pica_resolve_work` are now natural-language
|
|
23
|
+
creator entries** ("find more information about this person / this song",
|
|
24
|
+
"enrich this…", "look this song up in the MLC"), with Creator Question
|
|
25
|
+
Atlas backing. Flipped from specialist after founder telemetry showed the
|
|
26
|
+
ask arriving in exactly those words and neither resolver surfacing.
|
|
27
|
+
|
|
12
28
|
## [2.91.0] - 2026-07-07
|
|
13
29
|
|
|
14
30
|
### Added
|