How to Use the Eventmaker MCP in Mastra AI
Automate Eventmaker workflows and trigger conditional staff alerts using Mastra AI agents.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Eventmaker MCP to Mastra AI
Create your Vinkius account to connect Eventmaker to Mastra AI and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Build resilient Eventmaker agent workflows in Mastra
When a high-profile attendee registers, your Mastra AI agent must act without failing. This MCP Server integrates with Mastra's workflow engine to let you build multi-step flows that query `list_event_participants` and trigger automated follow-ups. If the Eventmaker API throws a rate limit error, Mastra's built-in retry mechanism uses exponential backoff to recover the participant data. This ensures your registration automation never drops a lead.
Trigger automatic staff reallocations
Use Mastra AI to constantly monitor room capacities by calling `list_currently_ongoing_events` on a strict schedule. When an Eventmaker session hits its limit, the workflow automatically branches to alert the floor manager. The Mastra agent uses `get_event_detailed_data` to verify venue constraints before making any staffing decisions. You get automated crowd control without writing fragile state machines.
Automate post-session engagement reviews
Once a talk ends, your Mastra AI workflow runs `quick_event_engagement_audit` to measure how many people actually scanned in. By adding this MCP Server to your Mastra setup, your agent can run this audit and instantly generate performance summaries for your sponsors. By linking `list_event_exhibitors` to this Mastra engine, you can automatically send lead reports to partners as soon as the expo hall closes.
Set up Eventmaker MCP in Mastra AI
Prerequisites
- Node.js 18+ and a TypeScript project
-
@mastra/mcp+@mastra/corepackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
npm install @mastra/mcp @mastra/coreplus your preferred model provider (e.g.@ai-sdk/openai). - 2
Configure the MCPClient
Create an
MCPClientwith your Vinkius endpoint as aURLobject. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Discover and inject tools
Call
mcpClient.listTools()and spread the result into your agent'stoolsobject. All Eventmaker tools become native Mastra tools. - 4
Run with any model
Swap
openai("gpt-4o")for any AI SDK-compatible provider. Callagent.generate()and the agent routes tool calls through MCP automatically.
import { MCPClient } from "@mastra/mcp";
import { Agent } from "@mastra/core/agent";
import { openai } from "@ai-sdk/openai";
const mcpClient = new MCPClient({
id: "eventmaker-mcp-client",
servers: {
"eventmaker-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Eventmaker Agent",
model: openai("gpt-4o"),
instructions: "You have access to Eventmaker tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Eventmaker transactions"
);
console.log(result.text); Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Eventmaker. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Eventmaker MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Eventmaker MCP today
We host it, we monitor it, we maintain it. You just paste one token.