@unified-product-graph/mcp-server 0.8.5 → 0.8.7

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to `@unified-product-graph/mcp-server` are documented in this file. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
4
4
 
5
+ ## [0.8.7] - 2026-06-03
6
+
7
+ `list_frameworks` now returns a lightweight summary per framework (the full four-layer record was overflowing the tool-result token cap on the default call); `get_framework` returns the full record. `apply_framework` shares one cross-surface envelope with the CLI (`{ exercise_id, exercise, included, warnings }`). `get_framework` gives a helpful error on an unknown id. Last-writer provenance is stamped on writes. The `upg-prioritise` skill teaches the apply/score exercise flow. Co-versions the @unified-product-graph/* 0.8.7 train.
8
+
5
9
  ## [0.8.5] - 2026-06-02
6
10
 
7
11
  Field-report fast-follow (tester report on 0.8.4).
package/TOOLS.md CHANGED
@@ -1413,11 +1413,13 @@ Apply a framework (MoSCoW, RICE, Kano, ...) to a set of entities: creates a fram
1413
1413
 
1414
1414
  **Returns:**
1415
1415
 
1416
- JSON: `{ exercise_id, exercise, included: [{ edge_id, entity_id }], warnings }`.
1416
+ JSON: `{ exercise_id, exercise, included: [{ edge_id, entity_id, edge_type }], warnings }`
1417
+ (the shared cross-surface envelope; identical to CLI `apply --json`).
1417
1418
 
1418
1419
  **Throws:**
1419
1420
 
1420
- - textError on a missing/unknown framework_id.
1421
+ - textError on a missing/unknown framework_id, or when no requested
1422
+ entity resolves (no dangling exercise is left behind).
1421
1423
 
1422
1424
  **See also:** `score_entity`
1423
1425
 
@@ -2021,7 +2023,7 @@ JSON: `{ patterns: string[], total: number }`
2021
2023
 
2022
2024
  ### `list_frameworks`
2023
2025
 
2024
- List the canonical `UPGFramework` definitions; the 34 curated, famous product frameworks that anchor the public catalog (spanning strategy, discovery, prioritisation, design, growth, engineering, and reflection classics). Paginated (default 50, max 200). Cursor is opaque: pass `next_cursor` from a previous response. Optional `category` is exact-match against `UPGFramework.category` and applies before pagination.
2026
+ List the canonical `UPGFramework` definitions: the curated, famous product frameworks that anchor the public catalog (spanning strategy, discovery, prioritisation, design, growth, engineering, and reflection classics). Returns a lightweight summary per framework (id, name, category, description, tags, approach_ids, structure_pattern); call `get_framework(id)` for the full record. Paginated (default 50, max 200). Cursor is opaque: pass `next_cursor` from a previous response. Optional `category` is exact-match against `UPGFramework.category` and applies before pagination.
2025
2027
 
2026
2028
  **Atomicity:** `atomic (read-only)`
2027
2029
 
@@ -2035,7 +2037,7 @@ List the canonical `UPGFramework` definitions; the 34 curated, famous product fr
2035
2037
 
2036
2038
  **Returns:**
2037
2039
 
2038
- JSON: `{ total, count, next_cursor?, frameworks: UPGFramework[] }`
2040
+ JSON: `{ total, count, next_cursor?, frameworks: Array<{ id, name, category, description, tags, approach_ids, structure_pattern }> }`
2039
2041
 
2040
2042
  **See also:** `get_framework`, `list_framework_categories`, `list_framework_structure_patterns`, `prioritise`, `list_approaches`
2041
2043