ssh_close_interactive_shell
Terminate an active SSH interactive shell session by specifying the session ID to free up resources and maintain clean connection management.
Instructions
Close an interactive shell session
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Interactive session ID to close |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "Interactive session ID to close",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}