tmux_create_session
Create new tmux terminal sessions for SSH access, command execution, and terminal automation. Specify session name and starting directory to organize multiple terminal environments.
Instructions
Create a new tmux session. If no name is provided, tmux will generate one. Returns session name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_name | No | Name for the tmux session (optional) | |
| start_directory | No | Starting directory for the session (optional) |
Input Schema (JSON Schema)
{
"properties": {
"session_name": {
"description": "Name for the tmux session (optional)",
"type": "string"
},
"start_directory": {
"description": "Starting directory for the session (optional)",
"type": "string"
}
},
"type": "object"
}