How to Use the Crelate Talent CRM MCP in Mastra AI
Build bulletproof hiring workflows that sync Crelate Talent CRM data using Mastra AI.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Crelate Talent CRM MCP to Mastra AI
Create your Vinkius account to connect Crelate Talent CRM 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.
Automated Candidate Enrichment with Mastra AI
Recruiting pipelines fall apart when APIs timeout. Mastra AI solves this by wrapping your Crelate operations in workflows with automatic retries. The MCP Server ensures your agent can run `get_contact_details` to fetch candidate profiles, and if the network hiccups, Mastra retries the call behind the scenes. Once the profile is in, the workflow branches based on candidate status. It can automatically trigger `get_contact_notes` to check if they're active, ensuring your recruiters only work with fresh, verified data.
Human-in-the-Loop Contact Creation
You don't want an autonomous agent dumping garbage records into your CRM. Mastra AI lets you require manual approval before running any write actions. When your agent wants to run `create_contact` to add a new candidate, Mastra pauses the run. The workflow pings a recruiter to review the parsed resume details. Once they click approve, the agent executes the tool and uses `list_crelate_users` to assign the new contact to the right owner.
Resilient Job Pipeline Auditing
Keeping your job boards accurate requires constant cross-referencing. This MCP Server lets your Mastra workflows pull active requisitions via `list_jobs` and verify them against client accounts. If a client company status changes, the workflow updates the job records automatically. The workflow uses `list_companies` to fetch client records and compares them to open jobs. If a mismatch is found, Mastra's branching logic can alert your team or update the job details without manual intervention.
Set up Crelate Talent CRM 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 Crelate Talent CRM 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: "crelate-talent-crm-mcp-client",
servers: {
"crelate-talent-crm-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Crelate Talent CRM Agent",
model: openai("gpt-4o"),
instructions: "You have access to Crelate Talent CRM tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Crelate Talent CRM 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 Crelate Talent. 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 Crelate Talent CRM MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Crelate Talent CRM MCP today
We host it, we monitor it, we maintain it. You just paste one token.