get_recent_output_log
Fetch recent Unreal Engine Output Log entries to review warnings, errors, or diagnostic messages after tool execution. Use filter_category to narrow results.
Instructions
Retrieve recent lines from the Unreal Engine Output Log.
Use this after running any tool to check for warnings, errors, or diagnostic messages that Unreal wrote to the log.
Args: lines: Number of recent log lines to return (default 200, max 1000) filter_category: Only return lines containing this string (e.g. "LogBlueprint", "LogPython", "LogAssetTools", "Error")
Returns: JSON string: { "success": true, "lines": ["LogPython: Warning: ...", "LogBlueprint: Error: ..."], "count": 45, "filter": "Error" }
KB: see knowledge_base/12_MCP_TOOL_USAGE_GUIDE.md#overview Example: get_recent_output_log()
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lines | No | ||
| filter_category | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |