Event hosting platform
## Luma MCP Server: Modern Event Platform The **Luma MCP Server** integrates the Luma event platform into Google Antigravity, enabling AI-assisted event creation, guest management, and community building for modern event organizers. ### Why Luma MCP? - **Beautiful Events**: Create stunning event pages with modern design out of the box - **Guest Management**: Handle RSVPs, waitlists, and guest communications effortlessly - **Calendar Integration**: Seamless calendar sync for attendees with automatic reminders - **Community Building**: Build recurring event series and engaged communities - **Analytics**: Track attendance patterns and engagement metrics ### Key Features #### 1. Event Creation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a Luma event for a weekly tech talk series with registration limit" }] ) ``` #### 2. Guest Management ```python # Manage guests response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show registered guests and move people from waitlist to confirmed" }] ) ``` #### 3. Event Series ```python # Create series response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Set up recurring monthly networking event with consistent branding" }] ) ``` #### 4. Communications ```python # Send updates response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Send reminder email to all registered guests with event details" }] ) ``` ### Configuration ```json { "mcpServers": { "luma": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-luma"], "env": { "LUMA_API_KEY": "your-api-key", "LUMA_CALENDAR_ID": "your-calendar-id" } } } } ``` ### Use Cases **Community Events**: Build and manage engaged event communities. **Professional Meetups**: Organize polished professional networking events. **Recurring Series**: Run consistent event series with minimal overhead. **Guest Experience**: Provide seamless registration and communication experience. The Luma MCP Server brings modern event management into your workflow for community builders.
{
"mcpServers": {
"luma": {
"mcpServers": {
"luma": {
"env": {
"LUMA_API_KEY": "your-api-key"
},
"args": [
"-y",
"luma-mcp-server"
],
"command": "npx"
}
}
}
}
}