Invitaciones con IA: hospeda y envía por WhatsApp | PartyPass

Invitaciones con IA · AI invitations

Hospeda en PartyPass la invitación que ya creó tu IA

¿ChatGPT, Claude o Gemini te ayudaron a diseñar tu invitación? PartyPass la publica en un enlace, la envías por WhatsApp y confirma a tus invitados automáticamente.

¿Qué es?

Cuando pides a un asistente de IA que te ayude con una invitación, normalmente terminas con un diseño en HTML o una imagen — pero sin una forma de enviarlo ni de saber quién asistirá. PartyPass es el servicio que toma esa invitación tal cual, la hospeda en un enlace para compartir y le conecta el envío por WhatsApp, las confirmaciones (RSVP), los pases QR y los recordatorios.

Cómo funciona

  1. 1

    Tu IA crea la invitación

    Pídele a ChatGPT, Claude o Gemini que diseñe tu invitación como un documento HTML o una imagen.

  2. 2

    PartyPass la hospeda

    Tu asistente envía la invitación a PartyPass y recibes un enlace público que puedes compartir de inmediato.

  3. 3

    Reclama tu evento

    Abres el enlace de reclamo, creas tu cuenta de PartyPass y tomas control del evento.

  4. 4

    Envía por WhatsApp

    Envías la invitación por WhatsApp y recibes confirmaciones (RSVP) automáticas con nuestro asistente de IA.

Conéctalo a tu asistente

Agrega PartyPass como conector en tu asistente de IA — sin instalar nada y sin clave. En Claude o ChatGPT, añade un conector MCP personalizado con esta dirección:

https://mcp.partypass.mx/mcp

Luego pídele que hospede tu invitación (ver ejemplos abajo). El conector es gratuito y no expone ninguna clave.

Cómo pedírselo a tu asistente

Copia uno de estos mensajes en ChatGPT, Claude o Gemini:

  • Ya tengo el HTML de mi invitación de boda. Hospédala en PartyPass y dame el enlace para enviarla por WhatsApp.
  • Diseña una invitación para mi cumpleaños y publícala en PartyPass para poder compartirla y confirmar asistencia.
  • Tengo una imagen de mi invitación de XV años. Súbela a PartyPass y dame el enlace para reclamar el evento.

Una nota importante

Las invitaciones hospedadas se publican tal como las creó tu IA: es un proceso de una sola dirección y no se pueden editar dentro del editor de PartyPass. Si necesitas editar la invitación en PartyPass, crea una con nuestras plantillas.

Para desarrolladores

La forma más sencilla es el conector MCP alojado (https://mcp.partypass.mx/mcp): tu asistente lo usa con OAuth, sin que el usuario final maneje ninguna clave. Para integraciones directas, también puedes llamar la API por HTTP con una clave de servicio:

curl -X POST https://api.partypass.mx/public/invitations/compose \
  -H "Authorization: Bearer $PARTYPASS_SERVICE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "format": "html",
    "html": "<!doctype html>…",
    "event": { "name": "Boda de Ana & Luis", "date": "2026-09-12T23:00:00.000Z" }
  }'
# → 201 { "previewUrl": "…", "claimUrl": "…", … }

Devuelve un previewUrl (visible de inmediato) y un claimUrl (donde una persona toma control). El paquete @partypass/mcp (stdio, para uso local) incluye su descripción OpenAPI y un archivo llms.txt. Consulta también /llms.txt.

Preguntas frecuentes

¿Necesito una cuenta para hospedar la invitación?

No para crear la vista previa. Tu asistente de IA genera un enlace de inmediato; solo creas una cuenta cuando quieres reclamar el evento y enviarlo por WhatsApp.

¿Qué formatos acepta?

Un documento HTML autocontenido (hasta 512 KB) o una imagen JPG, PNG o WebP (hasta 10 MB).

¿Puedo editar la invitación en PartyPass después?

No. Las invitaciones hospedadas se publican tal como las creó tu IA y no se abren en el editor de PartyPass. Si quieres editarla dentro de PartyPass, crea una invitación con nuestras plantillas.

¿Cuánto cuesta?

Hospedar la invitación y ver la vista previa es gratis. Pagas solo cuando publicas y envías el evento, igual que cualquier evento de PartyPass.

¿Es seguro?

Sí. El contenido se sanitiza al recibirlo y se muestra en un entorno aislado, y cada invitación pasa por moderación automática antes de poder enviarse.

English

What is it?

When you ask an AI assistant to help with an invitation, you usually end up with an HTML design or an image — but no way to send it or track who's coming. PartyPass is the service that takes that invitation as-is, hosts it at a shareable link, and wires up WhatsApp delivery, RSVPs, QR passes, and reminders around it.

How it works

  1. 1

    Your AI creates the invitation

    Ask ChatGPT, Claude, or Gemini to design your invitation as an HTML document or an image.

  2. 2

    PartyPass hosts it

    Your assistant sends the invitation to PartyPass and you get a public link you can share right away.

  3. 3

    Claim your event

    Open the claim link, create your PartyPass account, and take ownership of the event.

  4. 4

    Send on WhatsApp

    Send the invitation over WhatsApp and get automatic RSVPs handled by our AI assistant.

Connect it to your assistant

Add PartyPass as a connector in your AI assistant — no install, no key. In Claude or ChatGPT, add a custom MCP connector with this address:

https://mcp.partypass.mx/mcp

Then ask it to host your invitation (see the examples below). The connector is free and exposes no key.

How to ask your assistant

Paste one of these into ChatGPT, Claude, or Gemini:

  • I already have the HTML for my wedding invitation. Host it on PartyPass and give me the link to send it on WhatsApp.
  • Design an invitation for my birthday and publish it on PartyPass so I can share it and collect RSVPs.
  • I have an image of my quinceañera invitation. Upload it to PartyPass and give me the claim link.

One important note

Hosted invitations are published exactly as your AI created them: it's a one-way process and they can't be edited inside the PartyPass editor. If you need to edit the invitation in PartyPass, create one with our templates.

For developers

The easiest path is the hosted MCP connector (https://mcp.partypass.mx/mcp): your assistant uses it over OAuth, with no key handled by the end user. For direct integrations, you can also call the API over HTTP with a service key:

curl -X POST https://api.partypass.mx/public/invitations/compose \
  -H "Authorization: Bearer $PARTYPASS_SERVICE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "format": "html",
    "html": "<!doctype html>…",
    "event": { "name": "Boda de Ana & Luis", "date": "2026-09-12T23:00:00.000Z" }
  }'
# → 201 { "previewUrl": "…", "claimUrl": "…", … }

It returns a previewUrl (viewable immediately) and a claimUrl (where a human takes ownership). The @partypass/mcp package (stdio, for local use) ships its OpenAPI description and an llms.txt. See also /llms.txt.

FAQ

Do I need an account to host the invitation?

Not to create the preview. Your AI assistant generates a link right away; you only create an account when you want to claim the event and send it on WhatsApp.

What formats are accepted?

A self-contained HTML document (up to 512 KB) or a JPG, PNG, or WebP image (up to 10 MB).

Can I edit the invitation in PartyPass afterward?

No. Hosted invitations are published exactly as your AI created them and don't open in the PartyPass editor. To edit inside PartyPass, create an invitation with our templates.

How much does it cost?

Hosting the invitation and viewing the preview is free. You pay only when you publish and send the event, like any PartyPass event.

Is it safe?

Yes. Content is sanitized on ingest and shown in an isolated sandbox, and every invitation passes automated moderation before it can be sent.