luma-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@luma-mcpcreate a draft event for a tech meetup on June 15"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
luma-mcp
lu.ma events MCP server. Create events, set ticket prices, issue coupon codes, list RSVPs, and email attendees. All writes go through draft+confirm so nothing posts to Luma until you explicitly approve. Built on the official Luma public API.
What it does
Create + update lu.ma events (name, date, timezone, capacity, meeting URL, visibility, cover image)
Set ticket types and pricing
Issue coupon codes (calendar-scoped or event-scoped, percentage or fixed-cents discounts, redemption caps)
List event guests / RSVPs
Send markdown emails to attendees (pre-work, day-of, follow-up)
Audit log of every API call (JSONL with key/token redaction)
Prompt-injection scrubber on user-supplied free-text fields
Related MCP server: Pulumi Events MCP
Tools (v0.1.0)
Reads (call API directly):
luma_health— auth check + draft store sizeluma_get_event— fetch one event by IDluma_list_events— paginated calendar listingluma_list_event_guests— RSVPs filtered by statusluma_list_coupons— calendar or event-scoped
Writes (draft+confirm pairs):
luma_create_event_draft/luma_create_event_confirmluma_update_event_draft/luma_update_event_confirmluma_create_ticket_type_draft/luma_create_ticket_type_confirmluma_create_coupon_draft/luma_create_coupon_confirmluma_send_event_email_draft/luma_send_event_email_confirm
Plus:
luma_cancel_draft— cancel an unconfirmed draft (idempotent)
14 tools total.
Architecture
luma-mcp/
├── pyproject.toml
├── README.md
├── SETUP.md
├── LICENSE
├── .env.example
├── luma_mcp/
│ ├── __init__.py
│ ├── server.py FastMCP entry point + .env loader
│ ├── client.py HTTP wrapper around api.lu.ma/public/v1
│ ├── drafts.py Thread-safe draft store with TTL
│ ├── audit.py JSONL audit log with redaction
│ ├── scrubber.py Prompt-injection neutralizer
│ ├── _shared/ Day-1 shared utilities
│ │ ├── normalize.py Timezone alias + datetime helpers
│ │ └── types.py Permissive typed shapes for API responses
│ └── tools/
│ ├── health.py luma_health, luma_cancel_draft
│ ├── events.py create / update / get / list events
│ ├── tickets.py create ticket types
│ ├── coupons.py create / list coupons
│ ├── guests.py list event guests
│ └── emails.py send email to attendees
└── tests/integration/
└── test_full_pipeline.py 10-step bare-runnable verificationSafety patterns
Draft + confirm on every write. The draft tool returns a
draft_id; nothing hits Luma until the matching confirm tool is called. Drafts expire after 1 hour and can only be confirmed once.Audit log. Every API call is logged JSONL with
ts,tool,action, args (redacted),status,latency_ms. Path:~/.claude/luma-mcp/audit.log.Token redaction. Strings matching long-key heuristics, or values under keys like
api_key,token,cookie,secret, are masked before logging.Prompt-injection scrubber. User-supplied free-text fields (event name, description, email subject, email body) are passed through
unicodedata.normalize("NFKC"), stripped of zero-width characters, and have role-spoof prefixes / fake fences wrapped in backticks (preserving operator visibility, neutralizing model effect on downstream reads).Zero LLM in the tool path. Every routing decision is rule-based.
Use cases
Workshops + paid events — set sticker price, issue community-specific 100%-off coupons, pull guest list, blast pre-work email.
Multi-event programs — one cohorte announcement, sub-events on Luma, pull RSVPs across sessions.
Recurring meetups — duplicate event template via update_event_draft, change date, ship.
Install
Open Claude Code, paste:
/plugin marketplace add adelaidasofia/luma-mcp
/plugin install luma-mcp@luma-mcpTwo prerequisites for the server to authenticate:
Luma Plus subscription on the calendar you'll use (the public API is gated behind Plus).
API key generated from
https://lu.ma/settings/api, dropped into~/.claude/luma-mcp/.envasLUMA_API_KEY=....
After both steps, restart Claude Code. Tools appear under mcp__luma__*.
See SETUP.md for the manual .mcp.json registration path. The plugin install above replaces it.
Verification
cd ~/.claude/luma-mcp && python3 tests/integration/test_full_pipeline.py
# expected: PASSED — luma-mcp v0.1.0 integration test (10 steps green)Then in a Claude Code session: mcp__luma__luma_health() → {ok: true, user: {...}}.
Rate limit
Luma's public API caps at 200 requests / minute / calendar. The client does not auto-retry on 429; it surfaces the error and lets the operator pace.
Related MCPs
Same author, same architecture pattern (FastMCP, draft+confirm on writes, vault auto-export where applicable):
slack-mcp — multi-workspace Slack
imessage-mcp — macOS iMessage
whatsapp-mcp — WhatsApp via whatsmeow
apollo-mcp — Apollo.io CRM + sequences
google-workspace-mcp — Gmail / Calendar / Drive / Docs / Sheets
substack-mcp — Substack writing + analytics
parse-mcp — markitdown / Docling / LlamaParse router
Telemetry
This plugin sends a single anonymous install signal to myceliumai.co the first time it loads in a Claude Code session on a given machine.
What is sent:
Plugin name (e.g.
slack-mcp)Plugin version (e.g.
0.1.0)
What is NOT sent:
No user identifiers, names, emails, tokens, or API keys
No file paths, message content, or anything from your work
No IP address is stored after dedup processing
Why: Helps the maintainer know which plugins people actually install, so attention goes to the ones that get used.
Opt out: Set the environment variable MYCELIUM_NO_PING=1 before launching Claude Code. The hook will skip the network call entirely. Already-pinged installs leave a sentinel at ~/.mycelium/onboarded-<plugin> — delete it if you want to reset state.
License
MIT. See LICENSE.
Available Tools
16 toolsluma_cancel_draftC
Cancel an unconfirmed draft. Idempotent.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully cover behavior. It only states idempotency but omits side effects, permissions, error conditions, or return value details. The output schema exists but is not described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences are efficient and front-loaded. However, the extreme brevity sacrifices necessary detail, making it less useful than it could be.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple input (one required string) and presence of an output schema, the description covers the basic function but neglects error states, return format, and context relative to sibling tools. Incomplete for a tool with no annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description provides no explanation or format hints for the sole parameter `draft_id`. The agent receives no guidance on what the draft ID represents or how to obtain it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (cancel) and the resource (unconfirmed draft). The name and description align well. However, it does not differentiate from sibling tools like luma_update_event_draft, but the purpose is still clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for canceling unconfirmed drafts and includes idempotency. It lacks explicit when-to-use or when-not-to-use guidance and does not mention alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_coupon_confirmB
Commit a previously-drafted coupon.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist; the description only says 'commit' without disclosing side effects, idempotency, or permissions, leaving the agent blind to behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single efficient sentence without extra words, earning its place, though it could be more informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool and presence of output schema, the description is minimally sufficient but lacks preconditions and effects.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%; the description does not mention the required 'draft_id' parameter or provide any guidance on its usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Commit a previously-drafted coupon' uses a specific verb and resource, clearly distinguishing it from sibling tools like luma_create_coupon_draft.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The name and description imply usage after drafting; however, no explicit when-not or alternative guidance is provided beyond the sibling context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_coupon_draftA
Stage a coupon. Nothing posts until confirm.
Pass exactly one of discount_percentage or discount_cents.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | ||
| extra | No | ||
| event_id | No | ||
| expires_at | No | ||
| description | No | ||
| discount_cents | No | ||
| max_redemptions | No | ||
| discount_percentage | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses that the action is a draft (stage) and does not post until confirm. This is the most important behavioral trait. It does not mention other aspects like idempotency or permissions, but for a draft tool this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, both front-loaded. Every word adds value: 'Stage a coupon. Nothing posts until confirm.' and 'Pass exactly one of discount_percentage or discount_cents.' No filler, highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 8 parameters, 0% schema coverage, and no annotations, the description is minimal. The existence of an output schema (not shown) reduces the need to describe return values, but more guidance on how to use other parameters (e.g., event_id, expires_at) would improve completeness. Still, essential info for staging a coupon is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no descriptions in input schema). The description adds value for two parameters (discount_percentage and discount_cents) by stating that exactly one must be passed. However, the other six parameters (code, extra, event_id, expires_at, description, max_redemptions) receive no additional explanation, leaving their semantics unclear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it stages a coupon and that nothing posts until confirm. It distinguishes from luma_create_coupon_confirm (the confirm counterpart). The constraint of passing exactly one discount field is highlighted, making the tool's purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description specifies when to use: for staging a coupon before confirmation. It includes a critical usage rule: exactly one of discount_percentage or discount_cents. While it doesn't explicitly state alternatives, the sibling tool list provides context that luma_create_coupon_confirm is used after staging.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_event_confirmA
Commit a previously-drafted event creation. Returns the new event.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only mentions action and return value but lacks details on side effects, idempotency, or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, very concise; could benefit from slight elaboration on parameter or behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple tool with one parameter and output schema; description is minimal but sufficient given the context of siblings and output schema existence.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Description does not explain the draft_id parameter or its origin; schema provides 0% coverage so description adds no value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it commits a previously-drafted event and returns the new event, distinguishing it from drafting and updating tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies it should be used after drafting an event; does not explicitly state when not to use but context from siblings helps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_event_draftA
Stage an event for creation. Nothing posts to Luma until confirm.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Event title. | |
| extra | No | Additional Luma-supported fields not enumerated above. | |
| end_at | No | ISO-8601 datetime, optional. | |
| start_at | Yes | ISO-8601 datetime with timezone offset (e.g. 2026-05-20T14:00:00-04:00). | |
| timezone | Yes | IANA tz name (America/New_York) or alias (ET, EDT, NY, Bogotá). | |
| visibility | No | "public" or "private". Default per calendar settings. | |
| meeting_url | No | Zoom/Meet/etc. URL for virtual events. | |
| max_capacity | No | Hard attendance cap. | |
| description_md | No | Markdown body. Scrubbed for prompt injection before send. | |
| cover_image_url | No | Cover image URL (must already be hosted). | |
| require_approval | No | If true, RSVPs need host approval. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It discloses a key behavior: no posts occur until confirmation. However, it does not mention other traits like what the tool returns, error handling, or prerequisites. The output schema exists but is not referenced. The description is minimally adequate for a non-destructive draft tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two short sentences: the first states the purpose, and the second clarifies the behavior. It is extremely concise with no redundant words. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is minimal but covers the essential distinction from the confirm sibling. Given the complexity (11 parameters) and the existence of an output schema, one might expect more context about the expected output or how to proceed after drafting. However, for a simple staging tool, it is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description does not add any parameter-specific details beyond what the schema provides. Since the schema already documents all parameters, no further information is necessary, but the description could have highlighted key required fields (name, start_at, timezone).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Stage an event for creation.' The verb 'stage' is specific, and the resource 'event' is clear. It distinguishes from the sibling 'luma_create_event_confirm', which actually posts the event. The phrase 'Nothing posts to Luma until confirm' reinforces the draft nature.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the usage context: it's for drafting an event before confirmation. It mentions that nothing is posted until confirm, which guides the agent to use a two-step workflow. However, it does not explicitly state when to use this tool versus alternatives like 'luma_update_event_draft' or 'luma_cancel_draft'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_ticket_type_confirmA
Commit a previously-drafted ticket type.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, and the description lacks behavioral details such as irreversibility, side effects, or prerequisites beyond the basic commit action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no waste, but it might be overly terse for some agents.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequate for a simple commit operation with one parameter and an output schema, but lacks behavioral context and prerequisites.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the single parameter 'draft_id' is self-explanatory from its name and the description context; however, the description adds no extra meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Commit') and the resource ('a previously-drafted ticket type'), distinguishing it from sibling tools like luma_create_ticket_type_draft.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It implies usage after creating a draft, but provides no explicit when-to-use or when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_create_ticket_type_draftA
Stage a ticket type for an event. Nothing posts until confirm.
Pass either price_usd (decimal, e.g. 250.0) or cents (integer, e.g. 25000). Setting both raises. Setting neither creates a free ticket.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| cents | No | ||
| extra | No | ||
| capacity | No | ||
| currency | No | USD | |
| event_id | Yes | ||
| price_usd | No | ||
| description | No | ||
| require_approval | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the action is a draft ('Nothing posts until confirm') and describes error behavior for setting both pricing parameters. However, it does not mention prerequisites (e.g., event must exist), side effects, or safety profile. The description adds moderate value beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences. The first sentence states the core purpose and a key behavioral note. The second sentence provides specific parameter guidance. No unnecessary words; each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 9 parameters and an output schema, the description is insufficient. It omits explanations for most parameters, the return value, and the workflow context (e.g., relationship to other draft/confirm tools). While the output schema exists, the description does not reference it or any postconditions. More detail on parameter semantics and the staging workflow is needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only explains two parameters (price_usd, cents) with usage rules, but the other 7 parameters (name, capacity, currency, description, require_approval, extra) are not described. This minimal coverage leaves most parameters semantically opaque, requiring inference from names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Stage a ticket type for an event' with a specific verb and resource. The phrase 'Nothing posts until confirm' differentiates it from sibling 'luma_create_ticket_type_confirm', which is implied by the tool name and sibling list. The pricing behavior further specifies the tool's role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear guidance on how to use the pricing parameters ('Pass either price_usd or cents... Setting both raises. Setting neither creates a free ticket.'). It also implies the workflow by stating 'Nothing posts until confirm', suggesting a subsequent confirmation step. However, it does not explicitly name the sibling confirm tool or contrast with other sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_get_eventA
Fetch one event by ID. Returns the typed shape plus the raw payload.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the return format ('typed shape plus raw payload'), but lacks details on error handling, authorization, or rate limits. With no annotations, it is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no redundancy. Every word serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple read operation and presence of an output schema, the description covers the essential purpose and output. It could mention prerequisites or edge cases but is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description only implies the 'event_id' parameter without adding format, constraints, or examples. It adds minimal meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Fetch' and the resource 'one event by ID', distinguishing it from sibling tools like luma_list_events which returns multiple events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use (fetch by ID) and avoids ambiguity, though it does not explicitly mention when not to use or suggest alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_healthA
Verify the LUMA_API_KEY is set and authenticates against the Luma API.
Returns the calling user's profile on success (proves the key works) plus the active draft count so the operator can see if anything is staged.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description bears full burden. It discloses that the tool returns the user's profile and active draft count, and that it authenticates (proving the key works). This is sufficient for a simple health check tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no redundancy. The main action is front-loaded ('Verify the LUMA_API_KEY...') with additional output explanation efficiently appended.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and an output schema presumed to define the return structure, the description fully covers what the operator needs to know: purpose, authentication side effect, and return contents.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist; schema coverage is 100%. The description adds value by explaining what the outputs (profile, draft count) mean for the operator, exceeding the baseline expectation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it verifies the LUMA_API_KEY and authenticates against the Luma API. This distinct health check purpose is well differentiated from sibling tools that handle events, tickets, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage before other Luma tools to ensure the API key works. It provides clear context but does not explicitly list when not to use or mention alternatives, though this is obvious given the tool's nature.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_list_couponsA
List coupons scoped to an event (or calendar-wide if event_id is None).
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It correctly indicates the tool lists coupons and describes the scoping behavior (event-specific vs calendar-wide). However, it does not mention pagination, rate limits, or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the essential information. Every word serves a purpose; no fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (one parameter, output schema exists), the description is complete enough. It explains the core behavior and the only parameter's role. The output format is presumably covered by the output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has one parameter (event_id) with no description (0% coverage). The description adds crucial semantics: when event_id is None, coupons are listed calendar-wide. This adds significant value beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('list'), the resource ('coupons'), and the scoping behavior ('scoped to an event or calendar-wide'). This distinguishes it from sibling tools like luma_create_coupon_draft.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it (to list coupons) but does not explicitly mention when not to use it or compare with alternatives. No guidance on prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_list_event_guestsB
List RSVPs / guests for an event.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per call. Luma caps at 200. | |
| status | No | Filter by status (e.g. "going", "declined", "waitlist", "approved"). None = all statuses. | |
| event_id | Yes | Luma event api_id. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It only states the action, omitting details like pagination, authentication requirements, rate limits, or what happens with missing parameters. The minimal description fails to inform the agent about operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no wasted words. It is front-loaded with the core action. However, it could be slightly expanded to include parameter hints without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the availability of output schema and high schema coverage, the description is minimally sufficient. It states the tool's purpose but lacks contextual completeness on how to use it effectively, such as filtering status or limiting results. It covers the essentials but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds no meaning beyond the input schema. Although schema coverage is 100% and all parameters are described there, the description does not explain how to use parameters or their significance. It repeats no parameter info, so it provides zero added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'List RSVPs / guests for an event' clearly states the verb (List) and resource (RSVPs/guests), and is distinct from sibling tools like luma_get_event or luma_list_events. It unambiguously indicates the tool's function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No usage guidelines are provided. The description does not specify when to use this tool versus alternatives, such as other event-related tools, nor does it mention prerequisites or context. This leaves the agent without guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_list_eventsA
List events on the API key's calendar. Pagination via after/before cursors.
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | ||
| limit | No | ||
| before | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states a read operation (list), which is non-destructive, and hints at pagination behavior, but lacks details on authentication, rate limits, or response structure. It is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two succinct sentences: first defines purpose, second adds pagination detail. No filler or redundancy. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the existence of an output schema (no need to explain return values), the description covers core functionality and pagination. However, it omits details like what events are listed (past/future) or filtering options, but remains sufficient for a simple list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain parameters. It explains 'after' and 'before' as cursors for pagination, but does not explain the 'limit' parameter (default 50), leaving a gap in semantic clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies the verb 'List' and the resource 'events on the API key's calendar', clearly distinguishing it from sibling tools like luma_get_event (single event) or luma_create_event_draft (creation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It mentions pagination via after/before cursors, providing usage guidance for handling large result sets, but does not explicitly differentiate when to use this tool over alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_send_event_email_confirmC
Commit a previously-drafted attendee email blast.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It only says 'Commit', which suggests finalization, but does not disclose whether the action is irreversible, triggers email sending, or has other side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no wasted words. It is appropriately concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has a parameter and an output schema, the description lacks context about return values, the drafting workflow, and integration with sibling tools. Incomplete for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter 'draft_id' with no description. Schema coverage is 0%. The description does not explain what a draft ID is, how to obtain it, or its format.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Commit' and resource 'previously-drafted attendee email blast', which clearly identifies the action and distinguishes it from siblings like luma_send_event_email_draft (drafting) and luma_create_event_confirm (event creation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. It implies it follows drafting but does not state prerequisites or situations where it should be avoided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_send_event_email_draftB
Stage an email blast to event attendees. Body markdown supported.
| Name | Required | Description | Default |
|---|---|---|---|
| extra | No | Forward-compat additional fields. | |
| body_md | Yes | Markdown body. Scrubbed for prompt injection before send. | |
| subject | Yes | Email subject line. | |
| event_id | Yes | Luma event api_id. | |
| target_audience | No | Which segment. "going" (registered + approved), "all" (all RSVPs), "waitlist", "declined". Default "going". | going |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description should disclose behavioral traits like reversibility, permissions, or that this is a draft. Only mentions markdown support. Insufficient for a staged action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, direct sentences with no wasted words. Efficiently communicates core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given high schema coverage and output schema presence, the description is adequate but lacks behavioral context needed for a staging action. Could mention next steps (e.g., call confirm to send).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds minimal value beyond schema. It reinforces markdown support for body_md, but doesn't clarify parameter formats or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Stage an email blast') and target ('event attendees'), with a note on markdown support. It differentiates from the confirm sibling by using 'Stage', but doesn't explicitly state it is a draft step that requires confirmation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives, such as the confirm step or other email-related tools. Lacks when-not-to-use and prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_update_event_confirmB
Commit a previously-drafted event update.
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully describe behavior. It only states 'Commit' without detailing side effects (e.g., whether the draft is deleted, if the event becomes live, or required permissions). This is insufficient for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no wasted words. It is slightly under-specified but maintains conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, return values are not required, but the description lacks workflow context. It does not explain that this finalizes the update or how it fits with sibling tools like luma_update_event_draft.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, 'draft_id', has no schema description (0% coverage). The description mentions 'previously-drafted event update' but does not clarify that the parameter is the ID from luma_update_event_draft. More context is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Commit') and the resource ('previously-drafted event update'). It effectively distinguishes from sibling tools like 'luma_create_event_confirm' (commits new event) and 'luma_update_event_draft' (creates draft).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly suggests use after drafting an update, but offers no explicit when-to-use or when-not-to-use guidance. It does not reference alternative tools in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
luma_update_event_draftC
Stage an event update. Only fields provided are changed.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| extra | No | ||
| end_at | No | ||
| event_id | Yes | ||
| start_at | No | ||
| timezone | No | ||
| visibility | No | ||
| meeting_url | No | ||
| max_capacity | No | ||
| description_md | No | ||
| cover_image_url | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must carry full disclosure. It notes partial update semantics but omits side effects, idempotency, auth requirements, or that it returns a draft state. Lacks context about the staging lifecycle.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is very concise (one sentence) and front-loads the key behavior. However, it could include a brief bullet on parameter groups without adding bloat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 11 params, 0% schema coverage, no annotations, and an output schema (unseen), the description fails to explain return values, error handling, or the draft update flow. Very incomplete for a staging tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but description adds no parameter explanations. Does not clarify formats for 'start_at', 'timezone', or meaning of 'extra'. Only states that only provided fields change, which is generic.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it stages an event update and only changes provided fields. It distinguishes from siblings like luma_create_event_draft (create) and luma_update_event_confirm (confirm).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs. luma_update_event_confirm or luma_create_event_draft. Does not mention prerequisites or that it produces a draft needing confirmation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
16 tool updates
v0.2.0- First observed
luma_cancel_draft - First observed
luma_create_coupon_confirm - First observed
luma_create_coupon_draft - First observed
luma_create_event_confirm - First observed
luma_create_event_draft - First observed
luma_create_ticket_type_confirm - First observed
luma_create_ticket_type_draft - First observed
luma_get_event - First observed
luma_health - First observed
luma_list_coupons - First observed
luma_list_event_guests - First observed
luma_list_events - First observed
luma_send_event_email_confirm - First observed
luma_send_event_email_draft - First observed
luma_update_event_confirm - First observed
luma_update_event_draft
TDQS
Each tool has a distinct purpose: health check, event CRUD with draft/confirm pattern, ticket types, coupons, guests, and email blasts. No overlapping functionality, and descriptions clearly differentiate operations.
All tools follow a consistent 'luma_verb_noun' pattern with underscores. Verbs are intuitive (create, update, list, get, cancel, send) and nouns describe the resource (event, ticket_type, coupon, guest). Very predictable.
16 tools is a well-scoped set for an event management API. It covers draft/confirm workflows, listing, and auxiliary operations without unnecessary bloat or missing essentials.
Core event lifecycle (create, update, get, list, cancel drafts) is covered, plus ticket types, coupons, guests, and email sending. Missing: ability to delete confirmed events or update ticket types/coupons after creation. Minor gaps but overall comprehensive.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Eventify MCP server — manage events, attendees, sessions, speakers, sponsors, and analytics.
MCP server for Modern Treasury — payment orders, transactions, counterparties and ledgers.
MCP server for Boson Protocol — on-chain agentic commerce for physical & digital goods.
TheSignup MCP server — read and manage signups, participants, webhooks, and analytics.
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server for the Luma Events API that enables creating, updating, and managing events and guests.96-
- FlicenseNot gradedqualityBmaintenanceMCP server for managing events on Meetup.com and Luma via AI assistants like Claude.2-
- AlicenseAqualityAmaintenanceAn MCP server for managing Luma events, including listing, creating, updating events and guest registrations with privacy-conscious summaries.231952MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that dynamically sources global technology events, communities, and niche networking mixers from Luma, Eventbrite, Meetup, and fallback search sources, enabling event discovery and community finding via natural language.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adelaidasofia/luma-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server