stop_container
Use this tool to halt a running Docker container by specifying its ID or name, ensuring efficient container management in the Docker MCP Server environment.
Instructions
Stop a running Docker container
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container | Yes | Container ID or name |
Input Schema (JSON Schema)
{
"properties": {
"container": {
"description": "Container ID or name",
"type": "string"
}
},
"required": [
"container"
],
"type": "object"
}