You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ServiceLogsOutput represents output for service_logs
397
397
typeServiceLogsOutputstruct {
398
-
Entries []serviceLogEntryOutput`json:"entries" jsonschema:"Structured log entries with timestamp, message, and severity, ordered from oldest to newest"`
399
-
}
400
-
401
-
// serviceLogEntryOutput is the MCP output shape for a single log entry.
402
-
typeserviceLogEntryOutputstruct {
403
-
Timestamp time.Time`json:"timestamp"`
404
-
Messagestring`json:"message"`
405
-
Severitystring`json:"severity"`
398
+
Logs []string`json:"logs" jsonschema:"Log lines ordered from oldest to newest. Each line is prefixed with an RFC3339 timestamp followed by the log message."`
0 commit comments