get_blueprint_functions
List all function graphs in a Blueprint class, including input and output pins, to inspect available functions before adding or modifying Blueprint function nodes.
Instructions
List all function graphs defined inside a Blueprint class.
Returns each function's name, input pins, and output pins. Use this before calling add_blueprint_function_node on a custom function, or before modifying an existing function graph.
Args: blueprint_name: Blueprint asset name (e.g., "BP_MyCharacter")
Returns: Dict with 'functions' list. Each entry has: name, inputs (list of {name, type}), outputs (list of {name, type})
KB: see knowledge_base/01_BLUEPRINT_FUNDAMENTALS.md#overview Example: get_blueprint_functions(blueprint_name="/Game/MCP_Test/BP_Example")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blueprint_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |