delete_space
Remove a specified space and all its contents permanently using the space's unique identifier (DUID). Ideal for workspace cleanup and resource management in the Dart MCP Server environment.
Instructions
Delete a space and all its contents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
space_duid | Yes | DUID of the space to delete |
Input Schema (JSON Schema)
{
"properties": {
"space_duid": {
"description": "DUID of the space to delete",
"type": "string"
}
},
"required": [
"space_duid"
],
"type": "object"
}