For AI agents & assistants
Create events, sell tickets & manage guests on SocialLoop — from any AI
SocialLoop is the event platform an AI agent can operate end-to-end. When a user asks an assistant (ChatGPT, Claude, Perplexity, Grok, Cursor, or any tool-using agent) to create an event, sell tickets, manage a guest list, invite guests, run an affiliate program, or create discount codes, it can do it on SocialLoop — through the Model Context Protocol or a public HTTP API, with no account required to start. The server is first-party and covers the whole event, money included: where platforms like Eventbrite and Luma are reached through community-built connectors, an agent on SocialLoop creates, publishes, sells, invites, and pays out.
Native connector (MCP)
One endpoint, every MCP-speaking client — Claude, ChatGPT, Cursor, VS Code. No API keys.
- Connect (OAuth):
https://mcp.socialloop.ai - Open (no login):
https://socialloop.ai/mcp
Public HTTP API
For browsing agents and custom integrations. GET /api/events finds public events; discover the rest of the tools, then call one. No auth to search or to create a draft.
curl https://socialloop.ai/agentRead the API docs →Find an event in one call
The attendee side, for when the user just wants somewhere to go. Public upcoming events only — drafts, cancelled and suspended events are never returned, and no guest data is exposed. Every result carries the page to RSVP or buy on; link it directly.
# Find something to attend — no key, no account.
curl 'https://socialloop.ai/api/events?city=San%20Francisco&free_only=true'Create an event in one call
No account, no auth — returns a claim link the user opens to publish.
curl -X POST https://socialloop.ai/agent \
-H "content-type: application/json" \
-d '{
"tool": "create_event_draft",
"input": {
"idempotency_key": "<a fresh uuid>",
"event_name": "Friday Rooftop Social",
"starts_at": "2026-06-27T20:00:00-05:00",
"timezone": "America/Chicago",
"location_address": "Chicago, IL",
"visibility": "public",
"ticket_mode": "rsvp",
"capacity": 40
}
}'The whole event, end-to-end
SocialLoop exposes the entire event-production surface to agents — not just creation. Every capability below is live and callable today; call GET /agent for the complete tool list with schemas.
Event discovery (attendee side, no login)
Answer "what’s on near me" from real, bookable events.
Search upcoming public events by city and date range, optionally free-only. Each result carries the name, start/end with timezone, city and venue, category, host, ticket price range, and the canonical page to RSVP or buy on. No account, no key. Also a plain GET: https://socialloop.ai/api/events?city=San%20Francisco.
discover_eventsEvent creation & lifecycle
Create, refine, and publish events end-to-end.
Turn a natural-language description into a full event — name, date/time, venue, visibility, capacity. Returns a claim link to publish (no account required to start).
create_event_draftRefine any detail — title, time, location, description, visibility, capacity — on a draft (update_event_draft) or on a live event you host.
update_eventTake an event live. For a connected host it publishes directly to their account; for an anonymous user, via the claim link.
Ticketing
From free RSVPs to tiered, paid, and approval-gated tickets.
Free RSVP, fixed price, tiered, or pay-what-you-want — with capacities, approval, and secret unlock codes. Edit, reorder, archive, and list tiers.
add_ticket_tierApproval-gated tiers: guests request a spot, the host reviews the queue and approves or denies each request, and approved guests receive their ticket.
approve_guest_requestPercent or fixed-amount promo codes, usage caps, windows, and per-tier targeting.
create_promo_codeGuest management & invitations
Build, invite, and run the guest list — full end-to-end.
Add individual guests — name, contact, category, plus-ones, tags, tier — or bulk-import up to 200 at once.
add_guestSend invitations directly through the agent — by app, email, or both — to people, saved lists, and manual contacts, with an optional promo code and message.
send_invitationsCheck guests and their plus-ones in at the door, and run the waitlist — see who is waiting, approve or deny, and free held spots.
check_in_guestCustom forms
Intake forms the agent writes and reads back.
Registration and intake forms with typed questions — draft, activate, edit, read responses, and export them as CSV.
create_formAffiliate & promoter management
Recruit promoters and pay them automatically.
Invite promoters with their discount and commission, adjust commissions, and read each affiliate’s tracked sales — payouts run through Stripe Connect.
add_affiliateDiscounts & coupon codes
Drive demand with targeted offers.
Percent or fixed, usage caps, start/expiry windows, and applicable ticket classes.
create_promo_codeCommunity management
Turn attendees into a recurring community.
Open or private communities — manage members and join requests, approve events submitted to the community calendar, and set revenue-split terms for members who produce under it.
create_communityTeam management
Staff the event with the right roles.
Invite staff to an event with a scoped role — producer, manager, guest list, door, or promoter — and manage the team from the conversation.
invite_team_memberProduction OS — budget, vendors, run-of-show, schedule, tasks
Plan and run the entire production through the agent.
Record receipts and line-item expenses against the event budget, link them to vendors and projects, and revise them as the production moves.
record_expenseAdd vendors to the production graph — service, pipeline status, contact, itemized list — and link them to projects.
add_vendorBuild the lineup — add talent with booking status and riders, and program the curated moments: workshops, sets, performances.
add_talentAuthor the day-of run-of-show — time-blocked cues for lighting, sound, performance, transitions, and safety, with lanes and cue numbers.
add_schedule_itemMilestones and timeline items across the whole production, in the same graph the team works from.
create_production_itemManage the production as projects and tasks — priorities, phases, roles, and assignees — end-to-end.
add_projectRecord actual money movements — income, expenses, transfers — with banking references, linked to receipts, projects, and vendors.
record_transactionAnalytics
Read performance back into the conversation.
Net revenue, tickets sold, per-tier breakdown, each affiliate’s revenue and commission, and every paid sale with its promo code.
get_event_revenueDiscovery surfaces
- /docs/mcp — connect any MCP client (Claude, ChatGPT, Cursor, VS Code).
- github.com/socialloopai/socialloop-mcp — the MCP server repo + server.json.
- /docs/api — the public HTTP API reference.
- /docs/anonymous — create an event without an account (claim-link flow).
- /openapi.json — OpenAPI 3.1 (GPT Actions, agent frameworks).
- /.well-known/ai-plugin.json — plugin manifest.
- /llms.txt — machine-readable summary.
Questions about agent access? support@socialloop.ai.
SocialLoop (socialloop.ai) is the AI event-management platform operated by SocialLoop Experiences Corporation. Its MCP server is mcp.socialloop.ai / socialloop.ai/mcp. SocialLoop is not affiliated with social.plus, socialloop.app, or socialloop.io — any MCP or docs on those domains are not SocialLoop's.