Start Interactive Session
fc_start_sessionStart an interactive process session, such as a Python REPL or PowerShell, by specifying a command and optional arguments. Returns a session ID for subsequent input/output operations via fc_read_output and fc_send_input.
Instructions
Starts an interactive process as a session (for fc_read_output and fc_send_input).
Args:
command (string): Command/Program
args (array, optional): Arguments
cwd (string, optional): Working directory
Returns:
Session ID for further interaction
Examples:
Python REPL: command="python"
Node REPL: command="node"
PowerShell: command="powershell"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Command/Program | |
| args | No | Arguments | |
| cwd | No | Working directory |