How to Use the Heroku (PaaS) MCP in Mastra AI
Build resilient Heroku automations that just work. Mastra AI adds conditional logic and automatic retries to every Heroku tool call.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Heroku (PaaS) MCP to Mastra AI
Create your Vinkius account to connect Heroku (PaaS) 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.
Automate Complex Migrations
Use Mastra AI's workflow engine to run database migrations on Heroku. Your agent can create a sequence: first, enable maintenance mode with `toggle_maintenance_mode`, then run the migration script, and finally disable maintenance mode. If any step fails, Mastra's automatic retry logic kicks in. For example, if a dyno restart hangs, your workflow can use `restart_specific_dyno` again with exponential backoff before alerting an admin. This is reliability you don't have to code yourself.
Build a Smart Incident Response Bot
Your Mastra agent can monitor your Heroku apps for issues. When an alert comes in, it can use `list_dynos` to check for crashed containers and then automatically run `restart_all_dynos` to try and fix the problem. You define the logic. For instance: 'If `restart_all_dynos` fails twice, then `get_app_info` to check the stack, then `list_config_vars` to check for bad config, and finally page the on-call engineer.' It's an automated runbook powered by an MCP server.
Your Heroku MCP Server
This isn't just about running single commands. With Mastra AI, you can build workflows that make decisions. For example: 'List all apps with `list_apps`. For each app, check its dynos with `list_dynos`. If any dyno is 'crashed', restart it with `restart_specific_dyno`.' This MCP server gives you the building blocks. Mastra AI provides the workflow engine to connect them. Provision a staging environment with `create_app`, and if it succeeds, automatically copy its add-ons using `list_addons` as a template.
Set up Heroku (PaaS) 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 Heroku (PaaS) 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: "heroku-paas-mcp-client",
servers: {
"heroku-paas-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "Heroku (PaaS) Agent",
model: openai("gpt-4o"),
instructions: "You have access to Heroku (PaaS) tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent Heroku (PaaS) 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 Heroku. 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 Heroku (PaaS) MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Heroku (PaaS) MCP today
We host it, we monitor it, we maintain it. You just paste one token.