Force-cook a node and report whether it cooked cleanly, with errors, warnings and cook time. The definitive way to verify a node works.
(ctx: Context, path: str)
| 798 | |
| 799 | @mcp.tool() |
| 800 | def cook_node(ctx: Context, path: str) -> dict: |
| 801 | """ |
| 802 | Force-cook a node and report whether it cooked cleanly, with errors, |
| 803 | warnings and cook time. The definitive way to verify a node works. |
| 804 | """ |
| 805 | return _houdini_call("cook_node", {"path": path}) |
| 806 | |
| 807 | |
| 808 | @mcp.tool() |
nothing calls this directly
no test coverage detected