Skip to main content
Delete a project permanently

Tool details

FieldValue
Namedelete_project
GroupProjects

Playground

Input schema

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

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "deleted": {
      "type": "boolean",
      "description": "The deleted associated with this tool result."
    }
  },
  "required": [
    "id",
    "deleted"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the delete_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}