ChatGPT MCP Server

by Toowiredd
Verified

container_create

Create and start a new Docker container

Input Schema

NameRequiredDescriptionDefault
envNoEnvironment variables (e.g. ["KEY=value"])
imageYesDocker image name
nameNoContainer name
portsNoPort mappings (e.g. ["80:80"])

Input Schema (JSON Schema)

{ "properties": { "env": { "description": "Environment variables (e.g. [\"KEY=value\"])", "items": { "type": "string" }, "type": "array" }, "image": { "description": "Docker image name", "type": "string" }, "name": { "description": "Container name", "type": "string" }, "ports": { "description": "Port mappings (e.g. [\"80:80\"])", "items": { "type": "string" }, "type": "array" } }, "required": [ "image" ], "type": "object" }