How to Use the Placetel MCP in Mastra AI
Build reliable, automated workflows for your Placetel account using Mastra AI. Audit users, track resources, and schedule reports.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Placetel MCP to Mastra AI
Create your Vinkius account to connect Placetel to Mastra AI — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Automate User and Device Audits
Create a Mastra AI workflow that keeps your Placetel account clean. Set up a daily job that runs `list_users` and `list_sip_users`, then cross-references them to find any orphaned accounts or inconsistencies. For each user, the workflow can then call `list_devices` to check their assigned hardware. If it finds a user with no devices or a device assigned to no user, it can log the issue or send a notification. This is all done automatically in the background.
Build Scheduled Call Reporting
Stop pulling call logs by hand. With Mastra AI, you can build a workflow that runs `list_call_detail_records` on a schedule — say, every Monday at 9 AM. Your agent can filter the records for specific criteria, like call duration or destination. The workflow engine handles the scheduling and execution. You can have the final report sent to a Slack channel or saved to a file. It’s a set-it-and-forget-it solution for regular reporting needs.
Inventory Your Placetel Resources with this MCP Server
Get a complete picture of your account's assets. A simple Mastra AI agent can use this MCP Server to run `list_numbers`, `list_devices`, and `list_groups` to create a full inventory. You'll know exactly which numbers are in use, which devices are active, and how your user groups are structured. Because Mastra AI workflows are persistent, you can track changes over time. The agent can compare the latest inventory with a previous run and flag any new or removed resources. This is key for tracking asset allocation and costs.
Set up Placetel 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 Placetel 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: "placetel-mcp-client",
servers: {
"placetel-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Placetel Agent",
model: openai("gpt-4o"),
instructions: "You have access to Placetel tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Placetel 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 Placetel. 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 Placetel MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Placetel MCP today
We host it, we monitor it, we maintain it. You just paste one token.