close-terminal
End a specific terminal session by providing its unique ID, enabling efficient terminal management within the iTerm MCP Server environment.
Instructions
Close a specific terminal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
terminalId | Yes | ID of the terminal to close |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"terminalId": {
"description": "ID of the terminal to close",
"type": "string"
}
},
"required": [
"terminalId"
],
"type": "object"
}