For AI assistants
Connect VORTEX to your AI
Add our Model Context Protocol (MCP) server to Claude or ChatGPT and just ask about events. It can find events, check live availability and prepare a booking — you finish checkout and pay securely in your browser.
https://hybridvortex.com/api/mcpAdd to Claude
- Open Settings → Connectors.
- Click Add custom connector.
- Paste the MCP server URL above and save.
- In any chat, ask about VORTEX events.
Add to ChatGPT
- Open Settings → Connectors (enable developer mode if needed).
- Choose Add / Create connector.
- Paste the MCP server URL above and save.
- Start a chat and ask about VORTEX events.
Use it from code
import OpenAI from "openai";
const openai = new OpenAI();
const res = await openai.responses.create({
model: "gpt-5",
tools: [{
type: "mcp",
server_label: "vortex",
server_url: "https://hybridvortex.com/api/mcp",
require_approval: "never",
}],
input: "What VORTEX events are coming up? Prepare a booking for 2 solo tickets.",
});
console.log(res.output_text); Read-only tools: list_events, get_event, get_ticket_types, prepare_booking. No authentication required. Booking and payment are always completed by a human in the browser via Stripe.