shutdown_digitalocean_droplet
Shut down a DigitalOcean Droplet safely through the Cloud Manage MCP Server. Requires three confirmations (ID, IP, and name) to ensure accuracy and prevent unintended actions.
Instructions
优雅关闭DigitalOcean Droplet(需要三次确认)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
droplet_id | Yes | ||
ip_confirmation | No | ||
name_confirmation | No | ||
operation_confirmation | No |
Input Schema (JSON Schema)
{
"properties": {
"droplet_id": {
"title": "Droplet Id",
"type": "integer"
},
"ip_confirmation": {
"default": "",
"title": "Ip Confirmation",
"type": "string"
},
"name_confirmation": {
"default": "",
"title": "Name Confirmation",
"type": "string"
},
"operation_confirmation": {
"default": "",
"title": "Operation Confirmation",
"type": "string"
}
},
"required": [
"droplet_id"
],
"title": "shutdown_digitalocean_dropletArguments",
"type": "object"
}