get_stamp_dependencies
Generate a hierarchical dependency graph for a recursive stamp, mapping all referenced stamps and their relationships. Specify depth, include metadata, and choose output format like tree, graph, mermaid, or JSON.
Instructions
Create a hierarchical dependency graph for a recursive stamp, showing all referenced stamps and their relationships
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format for the dependency structure | tree |
include_metadata | No | Include full stamp metadata for each dependency | |
max_depth | No | Maximum depth to traverse dependencies | |
resolve_all | No | Attempt to resolve all dependencies (may be slow for deep graphs) | |
stamp_id | Yes | The ID or CPID of the stamp to map dependencies for |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "tree",
"description": "Output format for the dependency structure",
"enum": [
"tree",
"graph",
"mermaid",
"json"
],
"type": "string"
},
"include_metadata": {
"default": true,
"description": "Include full stamp metadata for each dependency",
"type": "boolean"
},
"max_depth": {
"default": 5,
"description": "Maximum depth to traverse dependencies",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"resolve_all": {
"default": true,
"description": "Attempt to resolve all dependencies (may be slow for deep graphs)",
"type": "boolean"
},
"stamp_id": {
"description": "The ID or CPID of the stamp to map dependencies for",
"type": [
"number",
"string"
]
}
},
"required": [
"stamp_id"
],
"type": "object"
}