read_log
Extract and return the content of a specified log file in Stata-MCP for analysis or review. Use this tool to access log file data directly.
Instructions
Read the log file and return its content.
Args:
log_path (str): The path to the log file.
Returns:
str: The content of the log file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
log_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"log_path": {
"title": "Log Path",
"type": "string"
}
},
"required": [
"log_path"
],
"title": "read_logArguments",
"type": "object"
}