Pulumi Events MCP
Provides tools for managing Meetup events, groups, members, venues, and Pro networks via Meetup's GraphQL API. Includes tools for searching events/groups, creating/editing events with cover images, listing group members, and more.
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., "@Pulumi Events MCPsearch for AI meetups in San Francisco this week"
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.
Pulumi Events MCP
MCP server for managing events on Meetup.com and Luma via AI assistants like Claude.
Built with FastMCP 3.x, it exposes Meetup's GraphQL API and Luma's REST API as MCP tools and resources so LLMs can search events, manage groups, create and publish events, and more.
Features
27 tools across two platforms (Meetup + Luma), tagged by platform and domain
Invite-only Luma events end-to-end — require-approval, capacity + waitlist, registration questions, host management, and members-only visibility, all without touching the Luma UI
6 resources for read-only lookups (user profiles, group/event/network details)
Cover image upload — pass a local file path when creating/updating events; the server handles CDN upload automatically (Luma presigned URL, Meetup two-step photo upload)
Auto-pagination on all list tools — single tool call returns all results
Meetup: JWT authentication for headless server-to-server access (no browser needed), with OAuth2 fallback
Meetup Pro network search with member metadata (roles, events attended, group counts)
Luma: API key authentication
Stateless HTTP transport — no stale session issues on server restarts
Provider architecture for easy addition of new platforms
Middleware
The server uses FastMCP's middleware stack for reliability and observability:
Middleware | Purpose |
| Converts raw exceptions to proper MCP error codes, logs errors consistently |
| Automatic retry with exponential backoff on transient network failures ( |
| 5-minute TTL cache on read-only tools (list, search, get) — mutations are never cached; |
Tool Metadata
All tools include FastMCP metadata for better LLM integration:
Tags — every tool is tagged by platform (
meetup,luma) and domain (events,groups,members, etc.) for discovery and filteringTimeouts — 120-second timeout on upload-capable tools and all auto-paginating list tools to prevent hangs on slow networks
Output schemas — key tools declare their response structure so LLM clients know what fields to expect
Annotations — read-only tools are marked with
readOnlyHint, idempotent tools withidempotentHint
Related MCP server: claude-sessions-mcp
Quick start
See the Getting Started guide for full setup instructions.
Cloud (deployed)
The server runs on AWS ECS Fargate behind CloudFront. Claude Code and Claude Desktop speak remote HTTP MCP natively — no proxy process needed:
claude mcp add --transport http pulumi-events https://<your-cloudfront-domain>/mcpClaude handles the Google OAuth flow itself (/mcp → authenticate) and manages token refresh. For clients that only support stdio servers, fall back to mcp-remote:
{
"mcpServers": {
"pulumi-events": {
"command": "npx",
"args": ["mcp-remote", "https://<your-cloudfront-domain>/mcp"]
}
}
}Headless environments (CI, sandboxes, scheduled agents) can't complete a browser OAuth flow. Set PULUMI_EVENTS_AUTH_TOKEN on the server and connect with the pre-shared token instead — it works alongside Google OAuth, not instead of it:
claude mcp add --transport http pulumi-events https://<your-cloudfront-domain>/mcp \
--header "Authorization: Bearer <token>"Google OAuth handles interactive MCP auth. Meetup authenticates automatically via JWT on server startup. The CloudFront domain is output by pulumi stack output cloudfront_url after deployment.
Local development
# Prerequisites: Python 3.12+, uv, Pulumi CLI (logged in)
git clone https://github.com/dirien/pulumi-events.git
cd pulumi-events
uv sync
# Start the server (credentials injected via Pulumi ESC)
pulumi env run ediri/pulumi-idp/auth -- uv run pulumi-eventsThen point Claude Code at http://127.0.0.1:8080/mcp.
Tools
Meetup
Tool | Tags | Description |
|
| List all configured platforms with auth status |
|
| Start Meetup OAuth2 login flow |
|
| Get full details of a Meetup event by ID |
|
| List events for a group (including drafts) with status filter |
|
| Search events with filters (lat/lon required, date, type) |
|
| Search groups by keyword and location (lat/lon required) |
|
| List all groups you belong to |
|
| Create an event (defaults to DRAFT). Supports |
|
| Edit an existing event. Supports |
|
| Delete, publish, announce, or manage RSVPs |
|
| Search events, groups, or members within a Pro network |
|
| List members of a group with roles and join dates |
|
| Get details of a specific member in a group |
|
| Find a member across all your groups (cross-group lookup) |
|
| Create a venue for events |
Luma
Tool | Tags | Description |
|
| List events from your Luma calendar |
|
| Get full details of a Luma event by API ID, including visible hosts, registration questions, and require-approval state |
|
| Create a Luma event — including invite-only ones: |
|
| Update a Luma event. Same field set as create, plus |
|
| Cancel a Luma event |
|
| List an event's ticket types with their |
|
| Add a host/co-host by email with |
|
| Change a host's access level or visibility |
|
| Remove a host (the event creator cannot be removed) |
|
| List all people from your Luma calendar |
|
| List guests for a Luma event |
|
| Send invite emails for a Luma event to an array of guests ( |
Image Upload
Both platforms support event cover images through their create/update tools:
Luma: Pass
cover_image_path(local file path) toluma_create_eventorluma_update_event. The server uploads to Luma's CDN via a presigned URL and sets thecover_urlautomatically.Meetup: Pass
featured_image_path(local file path) tomeetup_create_eventormeetup_edit_event. The server uploads via Meetup'screateGroupEventPhotomutation and sets thefeaturedPhotoId. For create, the event is created first, then the photo is uploaded and attached via an edit (since Meetup'sCreateEventInputdoesn't supportfeaturedPhotoId).
Supported image formats: JPEG, PNG, GIF, WebP, SVG, AVIF.
Sending Invites (Luma)
luma_send_invites takes an array of guests, each with a required email and an
optional name:
{
"event_id": "evt-abc123",
"guests": [
{ "email": "ada@example.com", "name": "Ada Lovelace" },
{ "email": "alan@example.com" }
],
"message": "Hope to see you there!"
}name is ignored for people who already have a name on their Luma account.
message is a single note applied to the whole batch (max 200 characters), not a
per-guest field. People who are not yet on the guest list are added and invited.
Event Theming (Luma)
Pass tint_color (a hex string, e.g. "#bb2dc7") to luma_create_event or luma_update_event to set the event page theme color. Luma derives contrast-adjusted shades from it; alpha channels are stripped automatically. There is no API field for custom background images — only cover_url and tint_color.
New events default to #2f2356 when tint_color is omitted. Configure via PULUMI_EVENTS_LUMA_DEFAULT_TINT_COLOR (empty string disables the default); the cloud deployment reads it from the marketing/pulumi-events ESC environment (pulumi-events-infra:lumaDefaultTintColor). Updates never apply the default — an existing color is only changed when tint_color is passed explicitly.
Invite-Only Events (Luma)
A single luma_create_event call (plus luma_add_host per co-host) produces a fully
configured invite-only event — private visibility, request-to-join approval, capacity
with waitlist, and a custom registration form — with no Luma UI steps:
{
"name": "Engineering Leadership Dinner",
"start_at": "2026-09-10T17:00:00Z",
"end_at": "2026-09-10T20:00:00Z",
"timezone": "Europe/Berlin",
"visibility": "private",
"require_approval": true,
"max_capacity": 12,
"waitlist_status": "enabled",
"registration_questions": [
{ "label": "Tell us more about you.", "required": true, "question_type": "text" }
],
"cover_image_url": "https://example.com/cover.png"
}The tool response is the event fetched back from the API, so most settings are verifiable in one round trip. Field-level behavior of Luma's public API (verified empirically):
Field | Behavior |
| Not an event field — Luma stores it per ticket type. The server sets it on all of the event's ticket types (new events have one free "Standard" type) and returns the applied state as |
| Write-only: GET returns |
|
|
| Round-trip in GET. Luma requires an |
|
|
Hosts |
|
| Accepted and applied, but write-only — GET always returns |
|
|
| Custom URL ( |
Cross-Platform: Meetup to Luma
When copying an event from Meetup to Luma, the LLM should look up the venue's Google Maps place ID and pass it as geo_address_json:
// Recommended — Google Maps place ID (most reliable)
{"type": "google", "place_id": "ChIJJzpTdyB0nkcRblzKCp3kxeQ"}Luma resolves the full address, coordinates, and map pin from the place ID automatically. Do NOT pass raw Meetup venue objects — they use an incompatible format. The server also strips invalid type fields server-side as a safety net.
Resources
URI | Description |
| Authenticated Meetup user profile |
| Meetup group details by URL name |
| Meetup event details by ID |
| Meetup Pro network info |
| Authenticated Luma user profile |
| Luma event details by API ID |
Configuration
All settings are loaded from environment variables with the PULUMI_EVENTS_ prefix:
Variable | Default | Description |
| — | Meetup OAuth client ID |
| — | Luma API key (requires Luma Plus) |
|
| Server bind address |
|
| Server port |
|
| Token cache directory |
| — | Bearer token for MCP endpoint auth (optional) |
|
| Auto-open browser for OAuth login |
|
| Default Meetup Pro network URL name |
|
| Default theme color for new Luma events (empty disables) |
| — | Public URL override (e.g. CloudFront domain) |
| — | RSA private key PEM for Meetup JWT auth |
| — | Meetup signing key ID (kid) |
| — | Meetup member ID for JWT auth (sub claim) |
|
| Token backend: |
| — | Google OAuth client ID (for MCP auth) |
| — | Google OAuth client secret |
Authentication
The MCP endpoint supports two auth modes that compose:
Google OAuth (when
PULUMI_EVENTS_GOOGLE_CLIENT_ID/_SECRETare set) — the interactive flow for browser-capable clients.Pre-shared bearer token (when
PULUMI_EVENTS_AUTH_TOKENis set) — for headless clients. If Google credentials are also configured, the token is accepted in addition to Google-issued tokens; requests bearing neither are rejected. With only the token set, all MCP requests must include theAuthorization: Bearer <token>header.
When neither is set, the server runs without auth (the default for local development).
To enable:
export PULUMI_EVENTS_AUTH_TOKEN="your-secret-token"MCP clients must then send the token in the Authorization header. Example Claude Code config:
{
"mcpServers": {
"pulumi-events": {
"type": "streamable-http",
"url": "http://127.0.0.1:8080/mcp",
"headers": {
"Authorization": "Bearer your-secret-token"
}
}
}
}Health (/health) and OAuth callback (/auth/meetup/callback) routes are not affected by MCP auth.
Project Structure
src/pulumi_events/
├── server.py # FastMCP instance, lifespan, middleware, custom routes
├── settings.py # Pydantic Settings configuration
├── exceptions.py # Exception hierarchy
├── utils.py # Shared utilities (image MIME type detection)
├── auth/
│ ├── backends.py # Pluggable token backends (File, Env)
│ ├── jwt_auth.py # Meetup JWT auth (headless, server-to-server)
│ ├── oauth.py # OAuth2 flow helpers (Meetup)
│ └── token_store.py # Token persistence + auto-refresh
├── providers/
│ ├── base.py # EventProvider protocol + capabilities
│ ├── registry.py # Provider registry
│ ├── meetup/
│ │ ├── client.py # GraphQL client with auto token refresh + binary upload
│ │ ├── provider.py # MeetupProvider implementation + photo upload
│ │ ├── queries.py # GraphQL query/mutation strings
│ │ └── models.py # Pydantic response models
│ └── luma/
│ ├── client.py # REST client for Luma public API + image upload
│ └── provider.py # LumaProvider implementation
├── tools/
│ ├── _deps.py # Shared dependency factories
│ ├── platform_tools.py # list_platforms, meetup_login
│ ├── event_tools.py # Meetup event mutations (with image upload)
│ ├── group_tools.py # Meetup group tools
│ ├── member_tools.py # Meetup member tools
│ ├── search_tools.py # Meetup search tools
│ ├── venue_tools.py # Meetup venue tools
│ └── luma_tools.py # Luma event + guest tools (with image upload)
└── resources/
├── meetup_resources.py
└── luma_resources.pyDeployment
The server is deployed to AWS ECS Fargate via Pulumi. Infrastructure code lives in deploy/.
deploy/
├── __main__.py # Pulumi program (VPC, ECR, ECS, ALB, CloudFront, Secrets Manager)
├── Pulumi.yaml # Project config (org: pulumi, toolchain: uv)
├── Pulumi.dev.yaml # Stack config (ESC environments: marketing/aws-auth, marketing/pulumi-events)
├── pyproject.toml # Pulumi SDK dependencies
└── uv.lockArchitecture: CloudFront (HTTPS) → ALB (HTTP) → ECS Fargate (port 8080)
Meetup authenticates headlessly via JWT on every container startup. Secrets are stored in AWS Secrets Manager and injected via ECS task definition. All config comes from Pulumi ESC.
cd deploy
pulumi up # deploy or update
pulumi logs # tail container logsDevelopment
make help # Show all targets
make check # Lint + format check
make format # Auto-format
make test # Run tests
make run # Start the serverLicense
MIT
This server cannot be installed
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 Servers
- Alicense-qualityDmaintenanceA Model Communication Protocol server that connects Meetup.com's event discovery APIs with Anthropic's Claude LLM, enabling intelligent event discovery and natural language querying for Meetup events.Last updated2MIT
- AlicenseBqualityDmaintenanceMCP server for managing Claude Code conversation sessionsLast updated12182MIT
- AlicenseAqualityFmaintenanceAn MCP server that lets you schedule AI phone calls and manage Leximo assignments directly from Claude Desktop or Claude Code.Last updated13472MIT
- Flicense-qualityCmaintenanceMCP server for managing self-hosted Uptime Kuma monitors and querying uptime statistics from Claude.Last updated
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for AI job search — find jobs, track applications, get alerts. Claude, ChatGPT, Cursor.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
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/dirien/pulumi-events'
If you have feedback or need assistance with the MCP directory API, please join our Discord server