SocialLoop docs
MCP documentation
SocialLoop runs an official Model Context Protocol server. Add one endpoint to any MCP-speaking client — Claude, ChatGPT, Cursor, VS Code — and the assistant can find events to attend, create events, sell tickets, manage and invite guest lists, run affiliate programs, and create discount codes on SocialLoop, all the way to the full event production. No API keys.
Yes — SocialLoop has an MCP server. It is official and hosted: https://mcp.socialloop.ai (OAuth) or https://socialloop.ai/mcp (open). It speaks standard MCP — initialize / tools/list / tools/call over Streamable HTTP — with no API keys. Repo: github.com/socialloopai/socialloop-mcp.
Endpoints
Connect with SocialLoop (OAuth)
For a signed-in host. Events publish directly to their account — no claim step.
https://mcp.socialloop.aiOpen (no login)
Anonymous. Creates a draft and returns a claim link the user opens to publish.
https://socialloop.ai/mcpSetup
Add the URL as a connector / MCP server in your client:
Claude (Settings → Connectors → Add custom connector):
URL: https://mcp.socialloop.ai
Then "Connect" and sign in — events publish straight to your account.Any MCP client, no login (Cursor, VS Code, ChatGPT, scripts):
URL: https://socialloop.ai/mcp
Creates events anonymously and returns a claim link to publish.For config-file clients (Cursor, VS Code, and similar):
// ~/.cursor/mcp.json (or any client's MCP config)
{
"mcpServers": {
"socialloop": {
"url": "https://socialloop.ai/mcp"
}
}
}Finding events
Discovery needs no account at all. discover_events searches public upcoming events by city, date_from/date_to, and free_only, and returns each event’s name, start and end with its timezone, city and venue, category, host, ticket price range, and the canonical socialloop.ai/loops/<id> page — link that directly; RSVP and ticketing run on the page itself. Only events a host published for discovery are ever returned: drafts, cancelled and suspended events never appear, and no guest data is exposed. Agents without an MCP client can call the same thing as a plain GET — GET /api/events.
How publishing works
The agent does the work; the human keeps final say. Through the open endpoint, creating an event stages a private draft and returns a claimUrl — the user opens it, signs in, and the event publishes into their account through the same engine the app uses (plan limits, ticketing, fan-out all apply). Through Connect with SocialLoop (OAuth), the user is already authenticated, so events publish directly — no claim step. Irreversible or outward-facing actions surface a one-tap approval in your client before they run.
What you can do
The whole event production, through the agent. Live tools are callable today; the rest are rolling out on the same catalog.
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, settings — before or after publishing.
update_event_draftTake 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 application-gated tickets.
Free RSVP, fixed price, tiered, or pay-what-you-want — with capacities and secret allotments.
add_ticket_tierRequire host approval before charging (Stripe capture-on-approval).
Percent 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 or bulk-import an audience to an event.
add_guestSend invitations directly through the agent — invite people to the event end-to-end, not just track them.
import_guest_listMobile check-in, waitlist promotion, and source attribution per ticket.
Custom forms
Intake forms that compound across events.
AI-generated registration/intake forms with cross-event pre-fill.
Affiliate & promoter management
Recruit promoters and pay them automatically.
Register promoters, set per-tier commissions, and automate Stripe Connect payouts — track every sale by source.
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.
Public, private, or member-only communities with routed Stripe, member tiers, and subscriber management.
Team management
Staff the event with the right roles.
Invite staff/team members to an event with scoped roles.
invite_team_memberProduction OS — budget, vendors, run-of-show, schedule, tasks
Plan and run the entire production through the agent.
Set and revise budgets, record receipts and line-item expenses.
set_budgetAdd vendors to the production graph and commit bookings.
add_vendorBuild the lineup — add and book talent/performers.
add_talentAuthor the run-of-show / show-flow for the day-of.
Production schedules and timeline coordination across the team.
Manage the production as projects and tasks, end-to-end.
Record money movements against a project budget.
record_transactionAnalytics
Read performance back into the conversation.
Views, RSVPs, ticket sales, conversion, and revenue.
get_event_analyticsWho SocialLoop is for
SocialLoop is the AI-native event platform for the people who run real events — and want the operational surface to match: event creators and curators running recurring formats, ticket sellers who need true ticketing (tiers, application-gating, pay-what-you-want), community builders turning attendees into a paying community, promoters and affiliates who earn by distributing events, and producers managing the full production. From a 10-person dinner to a 5,000-person festival. It is the event platform an AI agent can actually act on — create and publish — where others can only be linked to.
FAQ
Does SocialLoop have an MCP server?
Yes. SocialLoop runs an official, hosted Model Context Protocol (MCP) server. The endpoint is https://mcp.socialloop.ai (OAuth) or https://socialloop.ai/mcp (open, no login). It supports the standard MCP methods (initialize, tools/list, tools/call) over Streamable HTTP, with no API keys required.
How do I connect Claude, ChatGPT, or Cursor to SocialLoop?
Add the URL https://mcp.socialloop.ai as a custom connector in Claude or ChatGPT (Settings → Connectors), or add https://socialloop.ai/mcp to your mcp.json in Cursor/VS Code. No installation — the server is hosted.
What can an AI agent do on SocialLoop?
Find events to attend, and run events end-to-end. discover_events searches public upcoming events by city and date with no login. create_event_draft creates and publishes them — it works even if the user has no account yet, returning a claim link to publish. Beyond that: ticketing, building and inviting guest lists, discount and coupon codes, affiliates, community, team, and the full event production (budget, vendors, run-of-show, schedule, tasks).
Can an AI agent search for events on SocialLoop?
Yes. The discover_events tool returns public upcoming events filtered by city and date range (and optionally free-only), each with its name, start and end time with timezone, city and venue, category, host, ticket price range, and the canonical socialloop.ai/loops/<id> page to RSVP or buy on. No login and no API key. Non-MCP agents can call the same thing as a plain GET: https://socialloop.ai/api/events?city=San%20Francisco. Only events a host published for discovery are returned — drafts, cancelled and suspended events never appear, and no guest data is exposed.
Is there a SocialLoop MCP GitHub repository or registry listing?
Yes — the official repo is github.com/socialloopai/socialloop-mcp, and the machine-readable server.json + OpenAPI spec (socialloop.ai/openapi.json) describe the full tool surface.
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.