Redbark MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Redbark MCP ServerWhat's my total cash balance right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Redbark syncs bank and brokerage accounts to Google Sheets, Airtable, Notion, YNAB, and webhooks. The Redbark MCP server gives MCP-compatible AI agents — Claude, Cline, Cursor, ChatGPT, VS Code, and others — secure, read-only access to the same live financial data.
Australian banking data is sourced through the regulated Consumer Data Right (CDR / open banking) framework. Your banking credentials are never shared with Redbark or your AI agent, and Redbark never stores your banking data — every request is proxied live from the source.
Quickstart
The server is remote and hosted — there is nothing to install or run.
https://mcp.redbark.com/mcpTransport: Streamable HTTP
Auth: OAuth 2.1 (automatic — your client opens a browser consent flow), or a personal API key as a fallback
Requirements: a Redbark account on a Developer or Professional plan (API access is included in the free trial)
Cline
Add to cline_mcp_settings.json (Cline → MCP Servers → Configure):
{
"mcpServers": {
"redbark": {
"type": "streamableHttp",
"url": "https://mcp.redbark.com/mcp"
}
}
}Cline discovers the OAuth authorization server automatically and opens a browser window to approve access. To use an API key instead (created at app.redbark.com → Settings → API Keys):
{
"mcpServers": {
"redbark": {
"type": "streamableHttp",
"url": "https://mcp.redbark.com/mcp",
"headers": {
"Authorization": "Bearer rbk_live_YOUR_API_KEY"
}
}
}
}Claude Code
claude mcp add --transport http redbark https://mcp.redbark.com/mcpClaude (desktop / web)
Settings → Connectors → Add custom connector → paste https://mcp.redbark.com/mcp.
Cursor
{
"mcpServers": {
"redbark": {
"url": "https://mcp.redbark.com/mcp"
}
}
}Related MCP server: akahu-mcp
Tools
All tools are read-only. The server cannot move money, modify accounts, or change your Redbark configuration.
Tool | Description |
| List your connected bank and brokerage institutions |
| List accounts across connections (paged) |
| Live balances for up to 20 accounts at once |
| Live transactions for a connection (paged, default 30-day window) |
| Brokerage holdings (Professional plan) |
| Brokerage trade history, up to a 366-day window (Professional plan) |
Example prompts once connected:
"What did I spend on groceries across all my accounts last month?" "What's my total cash balance right now?" "Show my share purchases this financial year and summarise them in a table."
Authentication & scopes
OAuth (recommended). The server implements the standard MCP authorization flow (OAuth 2.1 with Dynamic Client Registration and PKCE). Clients that support MCP OAuth need only the server URL — registration, browser consent, and token refresh are automatic. Granted scopes:
Scope | Grants |
| Banking tools (always granted) |
| Brokerage tools (optional, Professional plan) |
You can review and revoke any connected agent at any time from Connected Apps in your Redbark settings.
API key (fallback). For clients without OAuth support, create a key at app.redbark.com → Settings → API Keys and send it as Authorization: Bearer rbk_live_....
Security
No stored banking data. Redbark proxies data live from providers at request time; customer banking data is never persisted to Redbark's database.
Regulated data access. Australian bank connections run on the CDR (open banking) framework — credentials go to your bank, never to Redbark or your agent.
Read-only by design. No tool can initiate payments or mutate accounts.
Scoped, revocable access. OAuth tokens carry only the scopes you consent to and can be revoked in one click.
Requests are rate-limited pre- and post-authentication, and every request is auditable.
Pricing
MCP access requires a Developer or Professional plan and is included in the free trial. Brokerage tools (list_holdings, list_trades) require Professional.
Support
License
This repository (documentation and assets) is MIT licensed. The hosted service is governed by the Redbark terms.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceProvides AI assistants with secure, read-only access to over 15,000 financial institutions across the US and Europe via the Model Context Protocol. It enables users to query account balances, transactions, and spending breakdowns through natural language conversation.57731MIT
- FlicenseAqualityDmaintenanceAn MCP server that exposes Akahu (New Zealand open-banking) data to LLM agents, allowing them to list bank accounts, inspect investment holdings, and pull transactions for analysis.3
- Alicense-qualityDmaintenanceConnects AI assistants to 500+ financial data tools from 40+ providers via the Model Context Protocol, enabling natural language queries for financial data.1MIT
- Alicense-qualityCmaintenanceEnables AI agents to perform identity verification, KYC/KYB, PEP & sanctions screening, bank statement analysis, and workflow automation via the Model Context Protocol.MIT
Related MCP Connectors
Connect AI agents to bank accounts, transactions, balances, and investments.
Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/redbark-co/redbark-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server