Skip to main content
Delete a dedicated server (sets status to deleting)

Tool details

FieldValue
Namedelete_server
GroupServers

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "server_id": {
      "type": "string",
      "description": "Server ID to delete"
    },
    "confirm": {
      "type": "boolean",
      "description": "Must be true to confirm deletion"
    }
  },
  "required": [
    "project_reference",
    "server_id",
    "confirm"
  ],
  "additionalProperties": false,
  "description": "Input schema for the delete_server tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the operation completed successfully."
    },
    "id": {
      "type": [
        "string",
        "null"
      ],
      "description": "Unique identifier for the returned record."
    },
    "error": {
      "type": [
        "string",
        "null"
      ],
      "description": "Error details returned by the tool."
    }
  },
  "required": [
    "success",
    "id",
    "error"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the delete_server tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}