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/mcp

Add to Claude

  1. Open Settings → Connectors.
  2. Click Add custom connector.
  3. Paste the MCP server URL above and save.
  4. In any chat, ask about VORTEX events.

Add to ChatGPT

  1. Open Settings → Connectors (enable developer mode if needed).
  2. Choose Add / Create connector.
  3. Paste the MCP server URL above and save.
  4. 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.