project_get_references
Get asset dependencies and referencers for a package, with options to trace incoming or outgoing references and filter to hard references only.
Instructions
Get asset references (dependencies and/or referencers) for a package.
Uses the Asset Registry to traverse one level of the reference graph.
Args: package_name: Full package path (e.g. '/Game/Blueprints/BP_HealthSystem'). direction: 'in' (who uses this), 'out' (what this uses), or 'both'. hard_only: If True, only hard (hard-reference) edges are included.
Returns: JSON StructuredResult. Data keys present depend on direction: referencers — packages that reference this asset (direction in/both) dependencies — packages this asset depends on (direction out/both)
KB: see knowledge_base/12_MCP_TOOL_USAGE_GUIDE.md#overview Example: project_get_references(package_name="ExampleName")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| direction | No | both | |
| hard_only | No | ||
| package_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |