execute_command
Enables execution of terminal commands via the MCP Terminal server, supporting real-time output retrieval and customizable timeout settings for streamlined task automation.
Instructions
Executes a terminal command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | ||
timeout | No | ||
wait_for_output | No |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"title": "Command",
"type": "string"
},
"timeout": {
"default": 10,
"title": "Timeout",
"type": "integer"
},
"wait_for_output": {
"default": true,
"title": "Wait For Output",
"type": "boolean"
}
},
"required": [
"command"
],
"title": "execute_commandArguments",
"type": "object"
}