# Eventee — how to use (mcp.ai)

Connect your Eventee account and use 22 tools for event management straight from your AI agent. Connect with your own API key. Eventee is an intuitive mobile and web app that enhances attendee experience and engagement at in-person, virtual, or hybrid events.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_eventee?ms=1787293380000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `eventee_add_speaker`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/eventee`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/eventee/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/eventee/add/speaker` — Tool to add a new speaker to a specific Eventee event. Use after creating an event and obtaining its ID.
  - body: { bio?: string, name: string, email?: string, photo?: string, company?: string, event_id: string|integer, position?: string, instagram?: string }
- `POST https://api.mcp.ai/api/eventee/create/hall` — Tool to create a new hall/stage for an event where sessions can be scheduled. Use when setting up venues or stages for your event to organize presentations and activities.
  - body: { name: string }
- `POST https://api.mcp.ai/api/eventee/create/label` — Tool to create a new label/track for categorizing event sessions by topic or theme. Use this when organizing sessions into different tracks like technology, design, or marketing themes.
  - body: { name: string, color?: string }
- `POST https://api.mcp.ai/api/eventee/create/partner` — Tool to add a new partner/sponsor to the event. Use when you need to register sponsors or exhibitors for your event.
  - body: { web?: string, email?: string, phone?: string, address?: string, company: string, description?: string }
- `POST https://api.mcp.ai/api/eventee/create/pause` — Tool to create a new break/pause in the event schedule (e.g., coffee break, lunch). Use when scheduling breaks between sessions. Start and end times must be within the event date range.
  - body: { end: string, name: string, start: string, event_id: string|integer, description?: string }
- `POST https://api.mcp.ai/api/eventee/delete/attendee` — Tool to remove an attendee from the event by their email address. Use when you need to delete an attendee registration.
  - body: { email: string }
- `POST https://api.mcp.ai/api/eventee/delete/hall` — Tool to delete a hall/stage from an event by its ID. Use when you need to remove a hall/stage after confirming its ID.
  - body: { hall_id: string }
- `POST https://api.mcp.ai/api/eventee/delete/partner` — Tool to delete a partner/sponsor by their ID. Use when you need to remove a partner after confirming their ID.
  - body: { partner_id: string }
- `POST https://api.mcp.ai/api/eventee/delete/registration` — Tool to remove a registration from the event by email address. Use when you need to delete or cancel a specific registration.
  - body: { email: string }
- `POST https://api.mcp.ai/api/eventee/delete/speaker` — Tool to delete a speaker by their ID. Use when you need to remove a speaker after confirming their ID.
  - body: { speaker_id: string }
- `POST https://api.mcp.ai/api/eventee/delete/test/content` — Tool to clear all test content from the event. Use this during development or testing to remove test data. This operation is destructive and cannot be undone.
- `POST https://api.mcp.ai/api/eventee/get/groups` — Tool to retrieve all event groups from Eventee (e.g., VIP attendees, speaker groups). Use this to get the list of attendee groups configured for your event.
- `POST https://api.mcp.ai/api/eventee/get/participants` — Tool to retrieve all participants/attendees for an Eventee event. The event is determined by your API token. Use this to get a list of all attendees who have registered or been invited to your event.
- `POST https://api.mcp.ai/api/eventee/get/partners` — Tool to retrieve all partners/sponsors for an Eventee event. Use this to get information about exhibitors and sponsors associated with your event.
- `POST https://api.mcp.ai/api/eventee/get/registrations` — Tool to retrieve all registrations for an Eventee event. The event is determined by your API token. Use this to get a list of all registered attendees for your event.
- `POST https://api.mcp.ai/api/eventee/get/reviews` — Tool to retrieve all reviews for your Eventee event. Reviews can include ratings and feedback from attendees about speakers, lectures, or the event itself. Use this to analyze attendee satisfaction an
- `POST https://api.mcp.ai/api/eventee/invite/attendee` — Tool to invite attendees to your Eventee event by sending invitation emails to specified users. Use when you need to send event invitations to new attendees.
  - body: { users: object[] }
- `POST https://api.mcp.ai/api/eventee/invite/registration` — Tool to invite registrants to your Eventee event by email. Use when you need to send event invitations to one or more participants.
  - body: { registrations: object[] }
- `POST https://api.mcp.ai/api/eventee/list/events` — Retrieves the content structure of your Eventee event including halls, speakers, lectures, workshops, and other event components. The event is determined by your API token. Use this to get an overview
- `POST https://api.mcp.ai/api/eventee/update/hall` — Tool to update an existing hall/stage details in an Eventee event. Use when you need to modify hall properties like name, order, or streaming URL.
  - body: { name?: string, order?: integer, stream?: string, hall_id: string }
- `POST https://api.mcp.ai/api/eventee/update/lecture` — Tool to update an existing lecture/session details in Eventee. Use when modifying lecture information such as name, time, or description. Note that all required fields (name, start, end) must be provi
  - body: { id: string, end: string, name: string, start: string, hall_id?: integer, description?: string }
- `POST https://api.mcp.ai/api/eventee/update/partner` — Tool to update an existing partner/sponsor details. Use when you need to modify partner information such as company name, contact details, or status.
  - body: { id: string, web?: string, email?: string, phone?: string, address?: string, company?: string, sponsor?: boolean, exhibitor?: boolean, description?: string }

## Example prompts
- "What can I do in Eventee?"
- "Show me a summary of my Eventee account"

## More
- Page: https://mcp.ai/eventee
- Agent spec (llms.txt): https://mcp.ai/eventee/llms.txt
- Postman collection: https://mcp.ai/eventee/postman.json
