Server data from the Official MCP Registry
Autonomous MCP server and background agent for managing live event logistics.
Autonomous MCP server and background agent for managing live event logistics.
EventsOrg MCP is a well-intentioned event management system with proper use of authentication mechanisms (API keys via environment variables) and appropriate permission scoping for its domain. However, multiple security concerns prevent a higher score: (1) the query_db tool allows arbitrary SQL SELECT execution without input sanitization, creating a potential information disclosure vulnerability; (2) environment variable credential handling, while using .env files, still risks exposure through process inspection and logging; (3) insufficient input validation on several action tools; and (4) the autonomous agent loop lacks rate-limiting safeguards beyond manual retry logic. The codebase shows good intent with Zod schema validation and proper async/await patterns, but these vulnerabilities should be addressed before production deployment. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
4 files analyzed · 14 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: GOOGLE_API_KEY
Environment variable: TWILIO_ACCOUNT_SID
Environment variable: TWILIO_AUTH_TOKEN
Environment variable: TWILIO_PHONE_NUMBER
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-guth01-eventsorg-mcp": {
"env": {
"GOOGLE_API_KEY": "your-google-api-key-here",
"TWILIO_AUTH_TOKEN": "your-twilio-auth-token-here",
"TWILIO_ACCOUNT_SID": "your-twilio-account-sid-here",
"TWILIO_PHONE_NUMBER": "your-twilio-phone-number-here"
},
"args": [
"-y",
"eventsorg-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
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:
# AI Models
GOOGLE_API_KEY=your_gemini_api_key
# Twilio SMS Engine
TWILIO_ACCOUNT_SID=your_twilio_sid
TWILIO_AUTH_TOKEN=your_twilio_token
TWILIO_PHONE_NUMBER=+1234567890
# External Integrations
OPENWEATHER_API_KEY=your_openweather_key
GOOGLE_MAPS_API_KEY=your_maps_key
# Escalation Emails
COORDINATOR_EMAIL=your_email@gmail.com
SMTP_USER=your_email@gmail.com
SMTP_PASS=your_app_password
# Webhook Config
PUBLIC_URL=eventsorg-mcp-production.up.railway.app # Set this when deployed publicly
WEBHOOK_PORT=3000
# Google Sheets Sync
GOOGLE_SHEET_ID=your_google_sheet_id
GOOGLE_SERVICE_ACCOUNT_JSON='{ "type": "service_account", ... }'
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.{
"mcpServers": {
"eventsorg-mcp": {
"command": "npx",
"args": ["-y", "eventsorg-mcp"],
"env": {
"TWILIO_ACCOUNT_SID": "your_twilio_sid",
"TWILIO_AUTH_TOKEN": "your_twilio_token",
"TWILIO_PHONE_NUMBER": "+1234567890",
"GOOGLE_API_KEY": "your_gemini_api_key"
}
}
}
}
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:
npx -y eventsorg-mcp --transport http
https://your-server.com/sse).import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";
const transport = new SSEClientTransport("https://your-server.com/sse");
const mcpClient = new Client();
await mcpClient.connect(transport);
// Trigger tools remotely over the internet!
await mcpClient.callTool({ name: "get_event_summary", arguments: {} });
(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.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.