EventOps MCP Server
Enables AI assistants to query event operations data from Humanitix/MQIS exports, including metrics, sales curves, attendee lookups, and loyalty analytics. Provides deterministic data with AI-generated narrative, plus a CLI for ops reports and consent-aware marketing emails.
README
EventOps: an MCP server + AI CLI for event operations
EventOps turns years of messy event ticketing exports into something an AI tool can actually reason about. It exposes MQIS event and membership data (Humanitix exports) to any Model Context Protocol client (Claude Desktop, Claude Code, Cursor) as a set of deterministic tools, and ships a small AI-enabled command line tool that writes ops reports and consent-aware emails on top of those same tools.
I built it to give my AI tools project-specific context instead of generic
answers. That is the whole idea: the AI can call get_event_metrics("Saazish")
and get the exact figure, rather than guessing.
Design principle: deterministic tools, AI for narrative
Every number comes from pandas, never from a language model. The MCP tools and
the CLI both call into one EventData object (data_loader.py) that does the
counting. The AI only decides which tool to call and how to phrase the result.
It cannot invent a revenue figure, because it never computes one. This is the
single most important property of the project.
What it does (real numbers from my own events)
Across 8 datasets: 3,690 orders, 4,690 valid tickets, ~2,770 unique people, and about A$61.4k in revenue to MQIS (net of platform fees; ~A$62.1k gross ticket sales). 238 people attended 2 or more distinct events, 69 of whom also held a membership.
Three money columns exist in the source data and they are not the same thing:
Ticket sales (gross face value), Paid (what the customer paid including
Humanitix fees), and Your earnings (what MQIS actually received). EventOps
reports Your earnings as "revenue to MQIS" so the headline number is honest.
Tools exposed over MCP (server.py)
| Tool | What it returns |
|---|---|
list_events |
Every dataset with its key and label |
get_event_metrics(event_name) |
Orders, tickets, net + gross revenue, paid/free/refunded split, online vs manual channel |
get_sales_curve(event_name) |
Sales over time, plus % of tickets sold in the final 48h / 7 days |
lookup_attendee(query) |
One person's full history across all files, by email or name |
find_loyal_members(min_events=2) |
Cross-event regulars, and how many are members |
build_marketing_segment(target) |
A consent-aware contact list (opt-in = Yes only) |
portfolio_summary |
Totals across everything |
AI CLI (cli.py)
python cli.py summary
python cli.py report --event "Saazish"
python cli.py compare --e1 "Raaz" --e2 "Saazish"
python cli.py draft-email --type promo --target non-members --event "Gulaal"
python cli.py attendee --query "someone@example.com"
Add --raw to any command to print the underlying JSON facts instead of the
AI-written version. This is a good way to prove the tools are exact: the AI
output only ever restates the --raw numbers.
The draft-email command only ever includes people whose Marketing opt-in is
Yes, so it will not draft to anyone who did not consent.
Setup
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
# 1. Sample data (safe, synthetic) so it runs out of the box:
python gen_sample_data.py
# 2. Or use real data: drop your Humanitix CSV exports into ./data/
# (that folder is git-ignored and never committed)
# 3. For the CLI, set your key:
cp .env.example .env # then edit, or just:
export ANTHROPIC_API_KEY=sk-ant-...
If ./data is empty, EventOps automatically falls back to ./sample_data, so a
fresh clone works immediately.
Registering the MCP server with a client
Claude Desktop / Claude Code (claude_desktop_config.json):
{
"mcpServers": {
"eventops": {
"command": "python",
"args": ["/absolute/path/to/event-ops-mcp/server.py"]
}
}
}
Cursor (.cursor/mcp.json): same shape. Restart the client, then ask it
things like "Using eventops, compare Raaz and Saazish" or "Who are our most loyal
attendees?" and it will call the tools.
Data privacy
Real exports contain personal information (names, emails, phone numbers). They
live in ./data/, which is git-ignored. Only the synthetic ./sample_data/ is
ever committed. Do not commit real attendee data.
Files
event-ops-mcp/
├── data/ # real Humanitix CSVs (git-ignored, you provide)
├── sample_data/ # synthetic CSVs, safe to commit
├── data_loader.py # cleaning + all deterministic analytics
├── server.py # FastMCP server exposing the tools
├── cli.py # AI-enabled CLI (Anthropic API)
├── gen_sample_data.py # builds the synthetic dataset
├── requirements.txt
├── .env.example
└── .gitignore
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。