How to Use the Refiner MCP in Mastra AI
Run automated feedback workflows with Mastra AI and the Refiner MCP Server to route churn signals instantly.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Refiner MCP to Mastra AI
Create your Vinkius account to connect Refiner 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.
Key Capabilities
Automate Churn Responses with Mastra Workflows
When a user submits negative feedback, you can't afford to wait. Mastra AI uses this MCP Server to trigger automated workflows the second a bad score drops. The agent runs `list_refiner_responses` to catch low scores, then branches the workflow based on the exact sentiment. If a customer signals they are about to cancel, the workflow automatically runs `get_refiner_contact` to pull their details. From there, Mastra routes the ticket to your high-priority Slack channel, retrying the step automatically if your internal webhook fails.
Sync User Segments Dynamically
Keeping user lists up to date across your stack is usually a pain. With Mastra AI, you can build an agent that monitors your database and calls `identify_refiner_user` to update custom attributes in real-time. The agent uses `list_refiner_segments` to verify the user landed in the correct bucket. Since Mastra handles complex branching, you can set up a rule that only runs this sync for accounts with active subscriptions, saving API quota.
Human-in-the-Loop Event Tracking
You don't always want your agent updating user tracking data without supervision. Mastra AI lets you require manual approval before running critical tools like `track_refiner_event`. When the agent decides to trigger a custom event, Mastra pauses the workflow and asks for your go-ahead. Once approved, the tool executes, updating the user's timeline inside Refiner so your product team sees accurate product usage data.
Set up Refiner 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 Refiner 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: "refiner-mcp-client",
servers: {
"refiner-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Refiner Agent",
model: openai("gpt-4o"),
instructions: "You have access to Refiner tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Refiner 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 Refiner. 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 Refiner MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Refiner MCP today
We host it, we monitor it, we maintain it. You just paste one token.