ChatGPT MCP Server

by Toowiredd
Verified

container_exec

Execute a command in a running container

Input Schema

NameRequiredDescriptionDefault
commandYesCommand to execute
containerYesContainer ID or name

Input Schema (JSON Schema)

{ "properties": { "command": { "description": "Command to execute", "type": "string" }, "container": { "description": "Container ID or name", "type": "string" } }, "required": [ "container", "command" ], "type": "object" }