get_command_history
Retrieve recent command execution history from the Terminal Controller for MCP. Specify the number of commands to return for efficient tracking and review of terminal activities.
Instructions
Get recent command execution history
Args:
count: Number of recent commands to return
Returns:
Formatted command history record
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"title": "Count",
"type": "integer"
}
},
"title": "get_command_historyArguments",
"type": "object"
}