Retrieve events and generate tickets via Ticket Generator API
MCP server that connects AI models to the Ticket Generator API for retrieving active events and generating tickets through 3 different modes.
Why it matters
Connect AI models to the Ticket Generator platform to retrieve active event listings and programmatically generate tickets through multiple generation modes, enabling automated ticketing workflows.
Outcomes
What it gets done
Retrieve lists of active events from Ticket Generator
Generate tickets using mode 1 generation parameters
Generate tickets using mode 2 generation parameters
Generate tickets using mode 3 generation parameters
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-ticket-generator-mcp | bash Capabilities
Tools your agent gets
Retrieves a list of active events from the Ticket Generator API.
Generates tickets through one of 3 available modes via the Ticket Generator API.
Overview
Ticket-Generator MCP Server
An MCP server that connects AI models to the Ticket Generator API. It exposes tools for retrieving lists of active events and generating tickets through 3 different generation modes, all accessible through the Model Context Protocol standard. Use this when you want AI assistants to access event information or create tickets programmatically. It's designed for integrating ticket generation capabilities into conversational AI interfaces and chatbots that need to interact with the Ticket Generator platform.
What it does
The Ticket-Generator MCP Server enables AI models to interact directly with the Ticket Generator API through the Model Context Protocol (MCP). It provides two core capabilities: retrieving lists of active events and generating tickets using one of three available generation modes.
When to use - and when NOT to
Use this server when you need AI assistants to access event information or create tickets programmatically through conversational interfaces. It's ideal for scenarios where users want to query available events or generate tickets without leaving their AI chat environment.
Do not use this server if you need direct human-facing ticket generation interfaces or if you require ticket management capabilities beyond generation and event retrieval. This is specifically designed for AI-to-API integration, not as a standalone ticket management system.
Inputs and outputs
Users provide natural language requests through their AI client, which the MCP server translates into Ticket Generator API calls. For event retrieval, the server returns lists of currently active events. For ticket generation, users specify their requirements and select from 3 different generation modes, receiving generated tickets as output.
Who it's for
This server is built for developers integrating ticket generation capabilities into AI-powered applications, chatbots, or virtual assistants. It's particularly valuable for teams building conversational interfaces for event management platforms or ticketing systems who want to leverage the Model Context Protocol standard for AI tool integration.
Source README
Ticket Generator MCP Server
A Model Context Protocol (MCP) server that provides AI agents with access to the Ticket Generator APIs for managing tickets and events.
Overview
This MCP server acts as a bridge between AI agents and the Ticket Generator APIs, allowing AI assistants to:
- Generate ticket IDs with QR code images (base64 PNG)
- Get hosted ticket URLs with optional variable field overrides
- Send tickets via email, SMS, or WhatsApp
- Retrieve event details for all active events on your account
Prerequisites
- Node.js 18.0.0 or higher
- A Ticket Generator API key (obtain from https://apis.ticket-generator.com/client/api-docs/)
- (For local development) ngrok for exposing local server
Quick Start
Install dependencies:
npm installStart the server (HTTP mode):
npm run dev:httpExpose locally with ngrok:
ngrok http 3000Configure your MCP client with the ngrok URL and your API key:
{ "mcpServers": { "ticket-generator": { "url": "https://your-ngrok-url.ngrok-free.app/mcp", "headers": { "Authorization": "your_ticket_generator_api_key" } } } }
API Key Security
Important: In HTTP transport mode, the API key is passed securely via the Authorization header from your MCP client configuration. It is:
- Session-specific - each client session has its own API key stored in memory
- Transmitted securely over HTTPS (production) or ngrok tunnel (development)
In stdio transport mode, the API key is read from the TG_API_KEY environment variable.
Usage
This MCP server supports two transport modes: HTTP (for development and production deployments) and stdio (for local CLI usage). In HTTP mode the API key is securely passed from your MCP client configuration via the Authorization header. In stdio mode the key is read from the TG_API_KEY environment variable.
Local Development with ngrok
Start the MCP server in HTTP mode:
npm run dev:httpThis will start the server on
http://localhost:3000In a separate terminal, expose your local server using ngrok:
ngrok http 3000Copy the ngrok forwarding URL (e.g.,
https://abc123.ngrok-free.app)Configure your MCP client (Claude Desktop, Cursor, etc.) with the ngrok URL and your API key:
{ "mcpServers": { "ticket-generator": { "url": "https://abc123.ngrok-free.app/mcp", "headers": { "Authorization": "your_ticket_generator_api_key" } } } }
Production Deployment
For production deployment, follow these steps:
Deploy the server to your hosting platform (AWS, DigitalOcean, etc.)
Set the required environment variable:
export MCP_TRANSPORT=httpNote: The server listens on
0.0.0.0:3000(hardcoded inserver.js).Optional environment variables for production:
CORS_ORIGINS- comma-separated allowed origins (e.g.,https://yourapp.com)RATE_WINDOW_MS- rate-limit window in ms (default: 60000)RATE_MAX- max requests per IP per window (default: 60)JSON_LIMIT- JSON body limit (default: 200kb)LOG_FORMAT- morgan log format (default: combined)
Start the server:
npm startConfigure your MCP client with your production URL:
{ "mcpServers": { "ticket-generator": { "url": "https://your-production-domain.com/mcp", "headers": { "Authorization": "your_ticket_generator_api_key" } } } }
Server Endpoints
GET /health- Health check endpointPOST /mcp- MCP initialization and tool call handlingGET /mcp- Server-to-client notifications via streamingDELETE /mcp- Session termination
Available Tools
The MCP server provides the following tools for AI agents:
1. get_ticket_data
Generates a ticket ID and its QR Code image (base64 PNG) for a given event. Optionally pass a ticket category and image width.
Parameters:
eventId(required): The Ticket Generator Event ID for which the ticket should be createdwidth(required): QR image width/height in pixels (square). Allowed range: 300-1500. Default: 300ticketCategoryId(optional): Ticket Category ID. If the event has only one category, this can be omitted
2. get_ticket_url
Returns a URL to the rendered QR Code ticket for the specified event (and optional category). You can optionally override up to 5 variable fields on the ticket design.
Parameters:
eventId(required): Ticket Generator Event IDticketCategoryId(optional): Ticket Category ID. Omit if the event has a single categoryvariables(optional): Array of up to 5 variable field overrides, each with:value(required): Value for this variable (e.g.,"Mark","A2")header(optional): Header/label for this variable (e.g.,"Name","Seat"). Leave empty to use the default label defined in the design
3. send_ticket
Sends a generated ticket to a recipient via Email, SMS, or WhatsApp. You can include subject, body, and sender details, along with up to 5 custom variable fields.
Parameters:
eventId(required): Ticket Generator Event IDticketCategoryId(optional): Ticket Category ID. Omit if the event has a single categoryemail(optional): Email address of the recipient (ticket will be sent here)phoneNumber(optional): Recipient's phone number for SMS deliverywhatsApp(optional): Settrueto send ticket via WhatsApp (requiresphoneNumber)whatsAppConsent(optional): Whether the recipient has consented to receive WhatsApp messages (required ifwhatsAppistrue)subject(optional): Subject line of the email (ifemailis provided)body(optional): Message body (HTML or plain text) for the email/SMS/WhatsApp messagefromName(optional): The sender name shown to the recipientvariables(optional): Array of up to 5 variable fields to personalize the ticket, each with:value(required): Value corresponding to the header (e.g.,"A12","Mark")header(optional): Variable header label (e.g.,"Seat","Name"). Optional if default is set in design
4. get_events_details
Returns the details (name, description, start date, end date, location, ticket categories, etc.) of all active events associated with your account.
Parameters:
- None - this tool takes no parameters and returns all active events for your API key
V2 Client API Tools
These tools call the V2 client APIs (cursor pagination, structured errors, idempotency and spec response headers).
Milestone 1 - Events & Attendees management:
list_events- Cursor-paginated list of your events; optionalstatus,date_from,date_to,cursor,limit.create_event- Create an event (name,date, optionalend_date,venue,description); idempotent.get_event- Full details of one event (eventId).update_event- Partial update (eventId+ any ofname,date,end_date,venue,description); idempotent.cancel_event- Soft-cancel an event (eventId); fails if any ticket was checked in.get_event_summary- Capacity / issued / sent / cancelled / checked-in counts and attendance rate (eventId).list_attendees- Cursor-paginated attendees (eventId; optionalsearch,status,cursor,limit).get_attendee- Single attendee/ticket detail (eventId,ticketId).update_attendee- Correct attendeename/email/phone(eventId,ticketId); idempotent.resend_ticket- Re-send a ticket onemail/sms/whatsapp(eventId,ticketId,channel); idempotent.cancel_ticket- Cancel a single ticket (eventId,ticketId); fails if already checked in.
Milestone 2 - Validation/Check-In, Analytics & Webhooks:
get_check_in_log
List an event's check-ins (validated tickets), newest first, with cursor pagination.
Parameters:
eventId(required): The event iddate_from(optional): Only check-ins at/after this ISO 8601 datetimedate_to(optional): Only check-ins at/before this ISO 8601 datetimecursor(optional): Pagination cursor from a previousnext_cursorlimit(optional): Page size (1-100)
get_ticket_status
Current validation status of a single ticket (valid | used | cancelled | expired) with check-in count and last check-in time.
Parameters:
eventId(required): The event idticketId(required): The ticket id
get_event_analytics
Structured analytics for an event: attendance_rate, delivery_rate (decimals), delivery_by_channel, hourly check_in_timeline and failed_deliveries_count.
Parameters:
eventId(required): The event id
get_event_report
Full per-attendee report (delivery + check-in). JSON by default, or a CSV document.
Parameters:
eventId(required): The event idformat(optional):json(default) orcsv
get_account_analytics
Cross-event analytics for your account: total_events, total_tickets, avg_attendance_rate, tickets_by_channel and a per-event attendance list.
Parameters:
date_from(optional): Only events starting on/after this ISO 8601 datetimedate_to(optional): Only events starting on/before this ISO 8601 datetimegroup_by(optional):weekormonth
create_webhook
Register a webhook endpoint for signed event notifications. The signing secret is returned once - store it to verify the X-TG-Signature (HMAC-SHA256) header.
Parameters:
url(required): The https endpoint to receive POSTsevents(required): One or more ofticket.created,ticket.sent,ticket.failed,ticket.scanned,ticket.cancelled,event.created,event.capacity_reachedsecret(optional): Signing secret (8-256 chars); auto-generated if omitted
list_webhooks
List your account's active webhook registrations (secrets are never returned).
Parameters:
- None
delete_webhook
Delete (deactivate) a webhook registration.
Parameters:
webhookId(required): The webhook id to delete
Integration with MCP Clients
Claude Desktop
Add this server to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"ticket-generator": {
"url": "https://your-server-url.com/mcp",
"headers": {
"Authorization": "your_ticket_generator_api_key"
}
}
}
}
For local development with ngrok:
{
"mcpServers": {
"ticket-generator": {
"url": "https://abc123.ngrok-free.app/mcp",
"headers": {
"Authorization": "your_ticket_generator_api_key"
}
}
}
}
Cursor IDE
Add the server to your Cursor MCP configuration:
{
"mcpServers": {
"ticket-generator": {
"url": "https://your-server-url.com/mcp",
"headers": {
"Authorization": "your_ticket_generator_api_key"
}
}
}
}
Other MCP Clients
Any MCP-compatible client can connect to this server using HTTP transport. Configure it with:
- URL: Your server endpoint (e.g.,
https://your-domain.com/mcp) - Authorization Header: Your Ticket Generator API key
API Endpoints
This MCP server integrates with the following Ticket Generator API endpoints (base URL: https://apis.ticket-generator.com/client/v1):
POST /ticket/data- Generate a ticket ID and QR code imagePOST /ticket/url- Get a hosted URL for a rendered ticketPOST /ticket/send- Send a ticket via email, SMS, or WhatsAppGET /event/details- Retrieve details for all active events
The V2 tools call the V2 client APIs under https://apis.ticket-generator.com/client/v2 - events/attendees management (Milestone 1), plus check-in/validation reads, analytics/reporting and webhooks (Milestone 2): e.g. GET /events/{eventId}/checkins, GET /events/{eventId}/tickets/{ticketId}/status, GET /events/{eventId}/analytics, GET /events/{eventId}/report, GET /account/analytics, and POST|GET|DELETE /webhooks.
For detailed information about the Ticket Generator APIs, visit:
https://apis.ticket-generator.com/client/api-docs/
Error Handling
The MCP server includes comprehensive error handling:
- Invalid API keys are caught and reported
- Network errors are handled gracefully
- Invalid parameters are validated and error messages are provided
- All errors are returned in a structured format for AI agents to understand
Development
Project Structure
ticket-generator-mcp/
├── server.js # Main MCP server implementation
├── package.json # Node.js dependencies and scripts
├── ecosystem.config.cjs # PM2 configuration for production
├── Dockerfile # Docker container configuration
├── deploy.sh # ECR build/push + ECS deployment script
├── task-definition.json # AWS ECS Fargate task definition template
├── nginx.conf # Nginx reverse proxy configuration
├── DEPLOYMENT.md # AWS Fargate/ECS deployment guide
├── NGINX-SETUP.md # Nginx setup options
├── PM2-GUIDE.md # PM2 usage guide
└── README.md # This file
Adding New Tools
To add new tools to the MCP server:
- Add the tool definition to the
getToolDefinitions()function - Add the corresponding case in the
handleToolCall()function - Implement the API call using the
makeTGRequesthelper function
Local Development Setup
Install dependencies:
npm installStart the server in development mode:
npm run dev:httpIn a separate terminal, start ngrok:
ngrok http 3000Use the ngrok URL to configure your MCP client with your API key in the Authorization header
FAQ
Common questions
Discussion
Questions & comments · 0
Sign In Sign in to leave a comment.