ssh_set_working_directory
Change the current working directory for an SSH connection to navigate remote server file systems and execute commands from specific locations.
Instructions
Set the current working directory for a connection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | SSH connection ID | |
workingDirectory | Yes | Working directory path to set as current |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "SSH connection ID",
"type": "string"
},
"workingDirectory": {
"description": "Working directory path to set as current",
"type": "string"
}
},
"required": [
"connectionId",
"workingDirectory"
],
"type": "object"
}