MCP Access Server

command-execute

Executes a command in the allowed list: ls / mkdir / cd / npm / npx / node / git / rm

Input Schema

NameRequiredDescriptionDefault
commandYesThe command(command only) to execute on Windows PowerShell
cwdYesWorking directory at command execution

Input Schema (JSON Schema)

{ "properties": { "command": { "description": "The command(command only) to execute on Windows PowerShell", "type": "string" }, "cwd": { "description": "Working directory at command execution", "type": "string" } }, "required": [ "command", "cwd" ], "type": "object" }