Terminal Controller is an MCP server that enables secure terminal command execution, directory navigation, and file system operations through a standardized interface. It implements several tools for executing commands, managing directories, and tracking command history, with built-in security measures to prevent dangerous operations. The server is designed to work across Windows and UNIX-based systems, making it versatile for various terminal-based tasks and integrations with AI-assisted workflows.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Execute a terminal command and return its results. Parameters: command (string), timeout (int, default: 30)
Get recent command execution history. Parameters: count (int, default: 10)
Get the current working directory.
Change the current working directory. Parameters: path (string)
List files and subdirectories in the specified directory. Parameters: path (string, default: current directory)
Write content to a file with overwrite or append options. Parameters: path (string), content (string), mode (string, 'overwrite' or 'append', default: 'overwrite')
Read content from a file with optional row selection. Parameters: path (string), start_row (int, optional), end_row (int, optional)
Insert content at specific row(s) in a file. Parameters: path (string), content (string), row (int, optional), rows (list of int, optional)
Delete content at specific row(s) from a file. Parameters: path (string), row (int, optional), rows (list of int, optional)
Update content at specific row(s) in a file. Parameters: path (string), content (string), row (int, optional), rows (list of int, optional)