get_recent_tool_calls
Retrieve recent tool call history with arguments and outputs to maintain session context, onboard new chats, or debug command sequences.
Instructions
Get recent tool call history with their arguments and outputs.
Returns chronological list of tool calls made during this session.
Useful for:
- Onboarding new chats about work already done
- Recovering context after chat history loss
- Debugging tool call sequences
Note: Does not track its own calls or other meta/query tools.
History kept in memory (last 1000 calls, lost on restart).
This command can be referenced as "DC: ..." or "use Desktop Commander to ..." in your instructions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| maxResults | No | ||
| toolName | No | ||
| since | No |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"default": 50,
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"since": {
"format": "date-time",
"type": "string"
},
"toolName": {
"type": "string"
}
},
"type": "object"
}