Eventflare MCP
by mluckx
README.md
# Eventflare MCP Server
Search 8,000+ corporate event venues across 40+ cities via the Model Context Protocol.
Powered by [Eventflare](https://eventflare.io) — the marketplace for corporate event venues. Works with any MCP-compatible AI assistant — Claude, ChatGPT, Perplexity, Cursor, Cline, and autonomous agents.
[](https://lobehub.com/mcp/mluckx-eventflare-mcp-server)
## Quickest way to connect
**Hosted endpoint — no setup required:**
```
https://eventflare-mcp-server-production.up.railway.app/mcp
```
Paste this URL into any MCP client that supports remote HTTP servers and you're connected instantly.
## Tools
| Tool | What it does |
|---|---|
| `search_venues` | Find venues by city, capacity, category, and event type. Returns names, pricing, setup options, neighborhood, and links. |
| `get_venue_details` | Full details for a specific venue. |
| `get_city_info` | Overview of a city — venue count, available categories, price range. |
| `list_cities` | All 40+ cities with venue counts. Filter by region (Europe, Middle East, Americas, Asia). |
| `get_pricing_guide` | Indicative pricing per city and category. |
| `find_expert_advice` | Editorial articles from Eventflare's expert team for a given city. |
| `request_quote` | Generate an inquiry link for a specific venue. |
Every result includes a direct link to the venue on [eventflare.io](https://eventflare.io) and a ready-to-use summary optimized for AI responses.
## Connect to Claude Desktop
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
```json
{
"mcpServers": {
"eventflare": {
"url": "https://eventflare-mcp-server-production.up.railway.app/mcp"
}
}
}
```
## Connect to Cursor
In Cursor settings → MCP → add server URL:
```
https://eventflare-mcp-server-production.up.railway.app/mcp
```
## Connect to Cline
In Cline settings → MCP Servers → Remote → paste the URL:
```
https://eventflare-mcp-server-production.up.railway.app/mcp
```
## Connect via Smithery
```bash
smithery mcp add michaelluckx/eventflare-mcp
```
## Self-host
```bash
git clone https://github.com/mluckx/eventflare-mcp-server
cd eventflare-mcp-server
npm install
cp .env.example .env
# Set EVENTFLARE_API_TOKEN in .env
npm run build
npm start
```
For HTTP mode (remote MCP):
```bash
TRANSPORT=http PORT=3001 npm start
```
## Safety
- **Read-only** — the server only reads venue data. No bookings, no form submissions, no data written anywhere.
- **Privacy-safe** — venue contact details, phone numbers, internal notes, and commission data are stripped before any response is returned. Only public venue information is ever exposed.
- **Rate limited** — 60 requests per minute per IP on the hosted endpoint.
- **Open source** — MIT licensed. Inspect the code at any time.
## Self-host environment variables
| Variable | Default | Purpose |
|---|---|---|
| `EVENTFLARE_API_TOKEN` | (required) | API token for venue data access |
| `TRANSPORT` | `stdio` | `stdio` or `http` |
| `PORT` | `3001` | HTTP port |
| `RATE_LIMIT` | `60` | Requests per minute per IP |
| `DASHBOARD_KEY` | _(unset)_ | Protects the `/dashboard` endpoint |
## Development
```bash
npm run dev # run without build step
npm run inspect # open MCP Inspector UI
```
## About Eventflare
[Eventflare](https://eventflare.io) is the marketplace for corporate event venues — 8,000+ spaces across 40+ cities worldwide, from intimate meeting rooms to large conference centres. Browse venues, compare pricing, and submit inquiries directly at [eventflare.io](https://eventflare.io).
## License
MIT — © [Eventflare](https://eventflare.io)
TDQS
A4.4/5.0
Scored across 7 tools
Disambiguation5/5
Each tool has a clearly distinct purpose: expert advice articles, city overview, pricing guide, venue details, city listing, quote request, and venue search. No overlap in functionality.
Naming Consistency5/5
All tools follow a consistent verb_noun pattern in snake_case (e.g., find_expert_advice, get_venue_details, search_venues), making it easy to predict tool behavior from name.
Tool Count5/5
Seven tools perfectly cover the domain of corporate event venue browsing and inquiry without unnecessary bloat or missing essential functions.
Completeness5/5
The tool set covers the full user workflow: discover cities, search venues, get pricing, view details, read expert advice, and request a quote. No obvious gaps for the stated purpose.
Maintenance
ActivityInactive
ResponsivenessNo issues