Skip to main content
Glama
Blackie360

Luma Events MCP Server

by Blackie360

Cancel and delete Luma event

delete_event
Destructive

Preview a Luma event cancellation, then permanently delete it and notify guests after explicit confirmation, including refund decision for paid events.

Instructions

Preview or permanently cancel and delete one Luma event. Call with confirmed=false first to show the exact event, approved guest count, and whether a refund choice is required. Cancellation is irreversible: Luma deletes the event and notifies all guests. Call with confirmed=true only after the user explicitly confirms the event and, for a paid event, whether guests should be refunded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_idYes
confirmedNoFalse returns a non-destructive preview. True permanently cancels and deletes the event after explicit user confirmation.
should_refundNoWhether to refund paid guests. Required when the preview reports is_paid=true.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.5

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Although annotations already mark destructiveHint=true, the description goes further by explaining irreversibility, guest notification, and the non-destructive nature of the preview call. These details provide context beyond the structured annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no filler. The key preview/confirm workflow is front-loaded, followed by the irreversible consequence, then the exact confirmation conditions. Every sentence contributes critical information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description fully covers the two-phase deletion workflow, the irreversibility, and the refund decision. With no output schema, it still tells the agent what the preview returns (event details, guest count, refund-required status), making the tool self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 67%, and the description enriches both confirmed and should_refund parameters: confirmed maps to preview vs. permanent deletion, and should_refund is tied to paid events and user confirmation. event_id is obvious from the tool's purpose.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('preview or permanently cancel and delete') on a specific resource ('one Luma event'), making it unambiguous what the tool does. It also distinguishes the destructive final action from the non-destructive preview mode.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit sequencing: call with confirmed=false first, then call with confirmed=true only after explicit user confirmation. It also clarifies the conditional use of should_refund for paid events, leaving little room for incorrect invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.