Claude Code MCP

bash

Execute a shell command

Input Schema

NameRequiredDescriptionDefault
commandYesThe shell command to execute
timeoutNoOptional timeout in milliseconds (max 600000)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "command": { "description": "The shell command to execute", "type": "string" }, "timeout": { "description": "Optional timeout in milliseconds (max 600000)", "type": "number" } }, "required": [ "command" ], "type": "object" }