Claude Desktop Commander MCP

execute_command

Execute a terminal command with timeout. Command will continue running in background if it doesn't complete within timeout.

Input Schema

NameRequiredDescriptionDefault
commandYes
timeout_msNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "command": { "type": "string" }, "timeout_ms": { "type": "number" } }, "required": [ "command" ], "type": "object" }