get_approach
Return one `UPGApproach` by id. Valid ids: `plan`, `inspect`, `prioritise`, `trace`, `reflect` (same names as the verb-led MCP tools).
Spec Introspectionatomic (read-only)
Arguments
idstringrequiredApproach id. One of: plan, inspect, prioritise, trace, reflect.
planinspectprioritisetracereflect
Returns
JSON: the full UPGApproach record.
Examples
Live call against the Notion example graph.
Input
{
"id": "plan"
}Output
{
"id": "plan",
"label": "Plan",
"description": "The path of arrival to \"what should I build next?\". Plan engages a region by surveying its entity coverage against canonical expectations and surfacing the missing scaffolding: the entities a healthy region carries that this graph does not. Cartographic sense: you are walking the coastline of a region and noting where the contour is incomplete, not deciding a strategy. Frameworks like Now/Next/Later, MoSCoW, and Wardley Mapping live within Plan as the named techniques for organising the gap-filling sequence.",
"question_answered": "what should I build next?",
"signature_hint": "({ region?: UPGRegionId }) → { missing_entities, coverage_score }",
"framework_id_examples": [
"now-next-later",
"moscow",
"wardley-map",
"okr-framework",
"three-horizons"
]
}