Agent Skill
2/7/2026

uloop-get-logs

Check Unity Console logs. Use when: checking logs, debugging errors, investigating failures, or when user asks about console output. Key options: --log-type (Error/Warning/Log/All), --max-count, --search-text. Retrieves errors, warnings, and Debug.Log messages.

H
hatayama
138GitHub Stars
1Views
npx skills add hatayama/uLoopMCP

SKILL.md

Nameuloop-get-logs
DescriptionCheck Unity Console logs. Use when: checking logs, debugging errors, investigating failures, or when user asks about console output. Key options: --log-type (Error/Warning/Log/All), --max-count, --search-text. Retrieves errors, warnings, and Debug.Log messages.

name: uloop-get-logs description: "Retrieve logs from Unity Console with filtering and search. Use when you need to: (1) Check for errors or warnings after compilation or play mode, (2) Debug issues by searching log messages, (3) Investigate failures with stack traces. Supports filtering by log type, text search, and regex."

uloop get-logs

Retrieve logs from Unity Console.

Usage

uloop get-logs [options]

Parameters

ParameterTypeDefaultDescription
--log-typestringAllLog type filter: Error, Warning, Log, All
--max-countinteger100Maximum number of logs to retrieve
--search-textstring-Text to search within logs
--include-stack-tracebooleanfalseInclude stack trace in output
--use-regexbooleanfalseUse regex for search
--search-in-stack-tracebooleanfalseSearch within stack trace

Global Options

OptionDescription
--project-path <path>Target a specific Unity project (mutually exclusive with --port)
-p, --port <port>Specify Unity TCP port directly (mutually exclusive with --project-path)

Examples

# Get all logs
uloop get-logs

# Get only errors
uloop get-logs --log-type Error

# Search for specific text
uloop get-logs --search-text "NullReference"

# Regex search
uloop get-logs --search-text "Missing.*Component" --use-regex

Output

Returns JSON array of log entries with message, type, and optional stack trace.

Skills Info
Original Name:uloop-get-logsAuthor:hatayama