EventWave
Event discovery and promotion workflows with human-controlled publishing and commerce.
Should I use this
Quality & Safety
Findings (3)
- LOWin get_eventwave_capabilities
- LOWin prepare_event_promotion_handoff
- LOWin prepare_event_promotion_checkout
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"eventwave": {
"url": "https://event-wave.base44.app/functions/eventWaveMcp"
}
}
}Remote endpoints
https://event-wave.base44.app/functions/eventWaveMcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
🟢search_events(query, city, category, days_ahead, limit)
Search upcoming EventWave public event records by city, category, date window, and keyword. Returns evidence state and original source URLs. Read-only.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"maxLength": 160
},
"city": {
"type": "string",
"maxLength": 120
},
"category": {
"type": "string",
"enum": [
"Music",
"Sports",
"Food",
"Arts",
"Community",
"Comedy",
"Theater",
"Conference",
"Festival",
"Nightlife",
"Other"
]
},
"days_ahead": {
"type": "integer",
"minimum": 1,
"maximum": 90
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_eventwave_promotion_offers
List current EventWave paid promotion packages and their evidence/payment boundaries. Read-only; creates no checkout, invoice, charge, or payment obligation.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢prepare_event_promotion_handoff(offer_key, event_id, event_title, source)
Prepare a review URL for a selected EventWave promotion package. This does not create checkout, invoice, charge, entitlement, or payment obligation. The human must review the page and explicitly start checkout there.
Input Schema
{
"type": "object",
"properties": {
"offer_key": {
"type": "string",
"enum": [
"event_boost_49",
"venue_pack_149"
]
},
"event_id": {
"type": "string",
"maxLength": 120
},
"event_title": {
"type": "string",
"maxLength": 240
},
"source": {
"type": "string",
"maxLength": 60
}
},
"required": [
"offer_key"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}⚪prepare_event_promotion_checkout(user_confirmed_payment, offer_key, contact_email, organizer_name, event_title, ...)
After the human explicitly agrees to pay for a selected EventWave promotion package, prepare the secure checkout. Checkout creation is not payment proof and source review still controls public placement.
Input Schema
{
"type": "object",
"properties": {
"user_confirmed_payment": {
"type": "boolean",
"const": true
},
"offer_key": {
"type": "string",
"enum": [
"event_boost_49",
"venue_pack_149"
]
},
"contact_email": {
"type": "string",
"maxLength": 254,
"format": "email",
"pattern": "^(?:[A-Za-z0-9_'+\\-]+\\.)*[A-Za-z0-9_'+\\-]*[A-Za-z0-9_+-]@(?:[A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
},
"organizer_name": {
"type": "string",
"maxLength": 160
},
"event_title": {
"type": "string",
"maxLength": 240
},
"target_event_id": {
"type": "string",
"maxLength": 120
},
"target_url": {
"type": "string",
"maxLength": 1000
},
"venue_name": {
"type": "string",
"maxLength": 220
},
"city": {
"type": "string",
"maxLength": 160
},
"buyer_note": {
"type": "string",
"maxLength": 1200
}
},
"required": [
"user_confirmed_payment",
"offer_key",
"contact_email"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_eventwave_promotion_status(order_id)
Read promotion order state and independently verify payment when a checkout session exists. Read-only from the agent perspective; may advance internal verified payment state.
Input Schema
{
"type": "object",
"properties": {
"order_id": {
"type": "string",
"minLength": 8,
"maxLength": 120
}
},
"required": [
"order_id"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_eventwave_capabilities
Describe EventWave machine-facing discovery, promotion, evidence, and payment boundaries.
Input Schema
{
"type": "object",
"properties": {},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Community
Evidence