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
22 tools across two platforms (Meetup + Luma), tagged by platform and domain
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. Connect Claude Desktop or Claude Code directly:
{
"mcpServers": {
"pulumi-events": {
"command": "npx",
"args": ["mcp-remote", "https://<your-cloudfront-domain>/mcp"]
}
}
}Google OAuth handles 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 |
|
| Create a Luma event. Supports |
|
| Update a Luma event. Supports |
|
| Cancel a Luma event |
|
| List all people from your Luma calendar |
|
| List guests for a Luma event |
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.
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 |
| — | 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 optional bearer token authentication. When PULUMI_EVENTS_AUTH_TOKEN is set, all MCP requests must include an Authorization: Bearer <token> header. When unset, 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
Latest Blog Posts
- 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