Autonomous MCP server and background agent for managing live event logistics.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An open-source Model Context Protocol (MCP) server and background autonomous agent designed to run the logistics of live events.
EventsOrg MCP gives LLMs (like Claude and Gemini) the "hands" to read live event data, reassign volunteers, cancel missing vendors, and communicate with staff via physical SMS messages.
Note: This repository is a framework. It is designed so that any event organizer can deploy their own instance of this code, attach their own API keys, and manage their own isolated event.
reassign_volunteer, get_vendor_status) to any standard AI client.agent.ts) that runs 24/7, actively monitoring the event and resolving issues before a human even notices.untun) to automatically route live Twilio SMS back to your localhost during development.This codebase supports three entirely different ways to interact with the AI:
stdio)Perfect for solo event organizers or local development. By connecting the code to Claude Desktop or Cursor, the AI talks directly to the local SQLite database via standard terminal input/output (stdio).
HTTP / SSE)By starting the server with the --transport http flag, you turn the local server into a globally accessible web API. Other developers, LangChain apps, or AI IDEs can connect to your event remotely using Server-Sent Events (SSE).
You don't even need a chat window. By running the included agent.ts script, a Gemini-powered worker wakes up every 5 minutes, checks the database for anomalies (missing vendors, safety incidents, weather alerts), fixes them, and texts the staffβcompletely autonomously.
Because this system uses a local SQLite database (grid.db), one deployment equals one event. If multiple organizers want to run different events, they must deploy their own separate instances of this code.
You will need API keys for:
Copy the .env.example file to .env and configure your API keys before starting the server. Alternatively, if deploying to a cloud platform (like Render, AWS, or Railway), add these directly to your dashboard:
The easiest way to use this is as a local plugin for Claude. Since it's published to NPM, you don't even need to clone the repo.
claude_desktop_config.json file.Example usage: Open Claude and say, "My security vendor just called and said they are 30 minutes late. Can you update the system and text the outdoor zone volunteers?" Claude will instantly talk to your NPM package in the background, update the local database, and send the Twilio texts.
If you want to build a custom web app or allow remote agents (like LangChain or custom scripts) to manage your event over the internet:
https://your-server.com/sse).(Note: Ensure you have your environment variables set in your terminal or cloud dashboard before running the npx command).
If you want to modify the code or run the autonomous background agent (agent.ts):
npm install..env.example to .env and fill in your keys.npm run start (for the API) or npm run start:agent (for the autonomous worker).If you want to host this publicly so an AI can manage it 24/7 in the cloud, you can deploy this on any Node.js hosting provider (like Render, AWS, Railway, Heroku, or Fly.io):
.env variables into your cloud provider's dashboard.https://my-events.onrender.com), and set this as the PUBLIC_URL environment variable.https://<YOUR-PUBLIC-URL>/webhook/sms.(Note: The npm start command will automatically seed the database with fake "sample event" data. If you are running a real event, remove tsx src/seed.ts from the start script in package.json!)
If you just want to test how the MCP protocol works without hosting a real event, I have deployed a public test instance of this server. Every time this test server boots, it completely wipes the database and fills it with a chaotic, half-broken music festival (vendors are 45 minutes late, zones are short-staffed).
You can build or connect your own MCP clients (like LangChain, custom apps, or AI code editors) to test it right now!
Live Test SSE Endpoint: https://eventsorg-mcp-production.up.railway.app/sse
Connect your AI to this URL and ask it: "What is the status of my event?" Watch as it identifies the issues and fires off physical text messages to try and save the festival!
This MCP server exposes over 20+ tools to give your AI full operational control over the event. Here are the main highlights:
send_sms, get_sms_history) Allows the AI to text staff directly. Inbound replies are automatically logged to the database via webhook.sync_to_sheets) Pushes the real-time state of the database to a remote Google Sheet for human coordinators.get_directions, get_weather) Provides the AI with live contextual data, such as walking times for reassigning volunteers or rain alerts for outdoor zones.get_event_summary, reassign_volunteer, cancel_vendor_slot, escalate_to_coordinator, move_zone_indoors)(Note: This is just a highlight! The server includes many more granular tools for managing incidents, checking in vendors, and querying exact database state.)
This project is licensed under the ISC License.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/eventsorg-mcp)<a href="https://allmcps.com/mcp/eventsorg-mcp"><img src="https://allmcps.com/api/badge/eventsorg-mcp?style=directory" alt="Eventsorg MCP on AllMCPs" /></a>