terminal_capture
Capture terminal screen output as a base64-encoded PNG image. Input the session ID to generate visual terminal snapshots for analysis or integration into AI workflows.
Instructions
Capture terminal screen as PNG screenshot
Args: session_id: ID of the terminal session
Returns: Dictionary with base64-encoded PNG image and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}