delete_gathering
Remove a gathering by specifying its ID. Use the force option to delete even if the gathering is closed, ensuring event data is managed effectively on the Gatherings MCP Server.
Instructions
Delete a gathering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force deletion even if gathering is closed | |
gathering_id | Yes | ID of the gathering to delete |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force deletion even if gathering is closed",
"type": "boolean"
},
"gathering_id": {
"description": "ID of the gathering to delete",
"type": "string"
}
},
"required": [
"gathering_id"
],
"type": "object"
}