MCP Variance Log

read-logs

Retrieve logged conversation variations from the database.

Input Schema

NameRequiredDescriptionDefault
end_dateNoFilter logs before this date (ISO format YYYY-MM-DDTHH:MM:SS)
full_detailsNoIf true, show all fields; if false, show only context summaries
limitYesMaximum number of logs to retrieve
start_dateNoFilter logs after this date (ISO format YYYY-MM-DDTHH:MM:SS)

Input Schema (JSON Schema)

{ "properties": { "end_date": { "description": "Filter logs before this date (ISO format YYYY-MM-DDTHH:MM:SS)", "type": "string" }, "full_details": { "default": false, "description": "If true, show all fields; if false, show only context summaries", "type": "boolean" }, "limit": { "default": 10, "description": "Maximum number of logs to retrieve", "maximum": 100, "minimum": 1, "type": "integer" }, "start_date": { "description": "Filter logs after this date (ISO format YYYY-MM-DDTHH:MM:SS)", "type": "string" } }, "required": [ "limit" ], "type": "object" }