3,400+ MCP servers ready to use
Vinkius

Odicci MCP Server for Mastra AIGive Mastra AI instant access to 12 tools to Check Odicci Status, Create Customer, Create Experience, and more

Built by Vinkius GDPR 12 Tools SDK

Mastra AI is a TypeScript-native agent framework built for modern web stacks. Connect Odicci through Vinkius and Mastra agents discover all tools automatically. type-safe, streaming-ready, and deployable anywhere Node.js runs.

Ask AI about this App Connector for Mastra AI

The Odicci app connector for Mastra AI is a standout in the Industry Titans category — giving your AI agent 12 tools to work with, ready to go from day one.

Vinkius delivers Streamable HTTP and SSE to any MCP client

typescript
import { Agent } from "@mastra/core/agent";
import { createMCPClient } from "@mastra/mcp";
import { openai } from "@ai-sdk/openai";

async function main() {
  // Your Vinkius token. get it at cloud.vinkius.com
  const mcpClient = await createMCPClient({
    servers: {
      "odicci": {
        url: "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
      },
    },
  });

  const tools = await mcpClient.getTools();
  const agent = new Agent({
    name: "Odicci Agent",
    instructions:
      "You help users interact with Odicci " +
      "using 12 tools.",
    model: openai("gpt-4o"),
    tools,
  });

  const result = await agent.generate(
    "What can I do with Odicci?"
  );
  console.log(result.text);
}

main();
Odicci
Fully ManagedVinkius Servers
60%Token savings
High SecurityEnterprise-grade
IAMAccess control
EU AI ActCompliant
DLPData protection
V8 IsolateSandboxed
Ed25519Audit chain
<40msKill switch
Stream every event to Splunk, Datadog, or your own webhook in real-time

* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure

About Odicci MCP Server

Connect your Odicci account to any AI agent and take full control of your interactive marketing orchestration and gamification through natural conversation. Odicci provides a premier platform for creating engaging customer experiences like quizzes, polls, and instant-win games, and this integration allows you to retrieve experience metadata, manage customer profiles, and monitor campaign segments directly from your chat interface.

Mastra's agent abstraction provides a clean separation between LLM logic and Odicci tool infrastructure. Connect 12 tools through Vinkius and use Mastra's built-in workflow engine to chain tool calls with conditional logic, retries, and parallel execution. deployable to any Node.js host in one command.

What you can do

  • Experience & Campaign Orchestration — List all managed interactive experiences and retrieve detailed configuration metadata programmatically to ensure your marketing loops are always synchronized.
  • Customer Lifecycle Management — Access and monitor your centralized customer database and create or update profiles directly from the AI interface to maintain a high-fidelity CRM.
  • Segment & Audience Control — Access and monitor audience segments via natural language to drive better targeted engagement and campaign personalization.
  • Reward & Prize Oversight — Access and monitor prize distributions and reward metadata to ensure your gamification strategy is always optimized using simple AI commands.
  • Operational Monitoring — Track system responses and manage customer interactions to ensure your interactive workflows are always high-performing.

The Odicci MCP Server exposes 12 tools through the Vinkius. Connect it to Mastra AI in under two minutes — no API keys to rotate, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.

All 12 Odicci tools available for Mastra AI

When Mastra AI connects to Odicci through Vinkius, your AI agent gets direct access to every tool listed below — spanning gamification, interactive-marketing, customer-engagement, and more. Every call is secured with network, filesystem, subprocess, and code evaluation entitlements inside a sandboxed runtime. Beyond a simple connection, you get a full AI Gateway with real-time visibility into agent activity, enterprise governance, and optimized token usage.

check_odicci_status

Verify connectivity

create_customer

Create a customer

create_experience

Create an experience

get_customer

Get customer details

get_experience

Get experience details

get_experience_stats

Get experience stats

get_segment

Get segment details

list_customers

List customers

list_experiences

List experiences

list_rewards

List rewards

list_segments

List segments

search_customers

Search customers

Connect Odicci to Mastra AI via MCP

Follow these steps to wire Odicci into Mastra AI. The entire setup takes under two minutes — your credentials stay safe behind the Vinkius.

01

Install dependencies

Run npm install @mastra/core @mastra/mcp @ai-sdk/openai
02

Replace the token

Replace [YOUR_TOKEN_HERE] with your Vinkius token
03

Run the agent

Save to agent.ts and run with npx tsx agent.ts
04

Explore tools

Mastra discovers 12 tools from Odicci via MCP

Why Use Mastra AI with the Odicci MCP Server

Mastra AI provides unique advantages when paired with Odicci through the Model Context Protocol.

01

Mastra's agent abstraction provides a clean separation between LLM logic and tool infrastructure. add Odicci without touching business code

02

Built-in workflow engine chains MCP tool calls with conditional logic, retries, and parallel execution for complex automation

03

TypeScript-native: full type inference for every Odicci tool response with IDE autocomplete and compile-time checks

04

One-command deployment to any Node.js host. Vercel, Railway, Fly.io, or your own infrastructure

Odicci + Mastra AI Use Cases

Practical scenarios where Mastra AI combined with the Odicci MCP Server delivers measurable value.

01

Automated workflows: build multi-step agents that query Odicci, process results, and trigger downstream actions in a typed pipeline

02

SaaS integrations: embed Odicci as a first-class tool in your product's AI features with Mastra's clean agent API

03

Background jobs: schedule Mastra agents to query Odicci on a cron and store results in your database automatically

04

Multi-agent systems: create specialist agents that collaborate using Odicci tools alongside other MCP servers

Example Prompts for Odicci in Mastra AI

Ready-to-use prompts you can give your Mastra AI agent to start working with Odicci immediately.

01

"List all active interactive experiences in Odicci."

02

"Show me the engagement statistics for my Summer Giveaway experience."

03

"Search for all customers who participated in experiences tagged with loyalty."

Troubleshooting Odicci MCP Server with Mastra AI

Common issues when connecting Odicci to Mastra AI through the Vinkius, and how to resolve them.

01

createMCPClient not exported

Install: npm install @mastra/mcp

Odicci + Mastra AI FAQ

Common questions about integrating Odicci MCP Server with Mastra AI.

01

How does Mastra AI connect to MCP servers?

Create an MCPClient with the server URL and pass it to your agent. Mastra discovers all tools and makes them available with full TypeScript types.
02

Can Mastra agents use tools from multiple servers?

Yes. Pass multiple MCP clients to the agent constructor. Mastra merges all tool schemas and the agent can call any tool from any server.
03

Does Mastra support workflow orchestration?

Yes. Mastra has a built-in workflow engine that lets you chain MCP tool calls with branching logic, error handling, and parallel execution.