How to Use the N26 Banking MCP in Mastra AI
Build failure-proof financial workflows for your N26 account with Mastra AI. Automate balance checks and transaction alerts.
Works with every AI agent you already use
…and any MCP-compatible client
Connect N26 Banking MCP to Mastra AI
Create your Vinkius account to connect N26 Banking 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 Expense Categorization
This toolset lets you build a Mastra AI agent that automatically processes your spending. Set up a workflow that runs `get_n26_transactions` every night. For each transaction, your agent can categorize it based on the merchant name and then log it to a spreadsheet or database. Mastra AI’s built-in workflow engine makes this reliable. If the N26 API is temporarily down, the agent automatically retries with exponential backoff. You don't have to write any of that logic; you just define the steps.
Build Conditional Balance Alerts
Use `get_n26_accounts` to create an autonomous account monitor. The agent can check your main account balance on a schedule. With Mastra AI's conditional branching, you can define logic like, 'IF balance is below €100, THEN send a push notification.' This isn't just a simple script. It's a durable workflow. You can add human-in-the-loop approval before any action is taken, giving you full control over the automation. This MCP Server provides the core financial data for your agent's decisions.
Reliable Savings Goal Monitoring
Your Mastra AI agent can use `get_n26_spaces` to keep an eye on your savings goals. The workflow can pull the balances from all your Spaces and check them against predefined targets. If a goal is reached, the agent can trigger another workflow, like moving funds or sending a confirmation email. Because Mastra AI is designed for complex operations, you can chain these tasks together. The agent doesn't just check a balance; it executes a multi-step process based on the data it gets from this MCP Server.
Set up N26 Banking 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 N26 Banking 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: "n26-banking-mcp-client",
servers: {
"n26-banking-mcp": {
url: new URL(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
),
},
},
});
const agent = new Agent({
name: "N26 Banking Agent",
model: openai("gpt-4o"),
instructions: "You have access to N26 Banking tools.",
tools: {
...(await mcpClient.listTools()),
},
});
const result = await agent.generate(
"List recent N26 Banking 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 N26. 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 N26 Banking MCP in Mastra AI
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the N26 Banking MCP today
We host it, we monitor it, we maintain it. You just paste one token.