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) live access to the same financial data, plus scoped management of your Redbark account: syncs, destinations, rules, categories and event destinations. It is a thin layer over the Redbark API v2: every API operation is one tool, under the same name as the operation id.
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 read 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
Every Redbark API v2 operation is a tool, named after its operation id (81 tools, 62 listed by default), plus five composite tools. Reads fetch banking data live. Writes change Redbark configuration only (syncs, destinations, rules, categories, event destinations), never your bank. The AI only gets the scopes you grant on the consent screen; tools outside those scopes refuse and say which scope to grant.
Family | Example tools | Scope | Example prompt |
Account |
| none | "Which plan am I on?" |
Connections, consents, institutions |
|
| "Which of my bank connections expire this month?" |
Accounts and balances |
|
| "What is the balance on my offset account?" |
Transactions |
|
| "List my transactions over $500 since 1 July" |
Holdings and trades |
|
| "What are my largest positions?" |
Syncs and runs |
|
| "Run the Notion sync now and tell me when it finishes" |
Destinations |
|
| "Which tabs does my Budget spreadsheet have?" |
Categories |
|
| "Make a Subscriptions category and map streaming merchants to it" |
Rules |
|
| "Preview what my cleanup ruleset would do to last month" |
Events |
|
| "Show the last failed sync run event and redeliver it" |
Link sessions |
|
| "Give me a link to connect another bank" |
API keys |
| not available over OAuth | Keys are created in the dashboard. API-key clients with |
Ids are the public ids from the API (acct_..., conn_..., sync_..., dest_...). Lists are paginated the same way as the API: the AI passes limit and follows the page token. The full list of tools, with every argument, is the API reference.
Composite tools
Five tools combine several API calls so common questions take one step:
Tool | What it does |
| Every account with a live balance, grouped by connection, with consent expiry and reauthorisation flags |
| Spend and income for a date range, grouped by category, merchant, account or month, with the largest transactions. Raw transactions are never returned |
| Checks the destination, resolves its resources (Sheets tabs, YNAB accounts), builds the mappings and creates the sync |
| Last runs, failure reason, related events, connection and consent state, and a recommended next action |
| Finds the institution and creates a link session, returning the hosted URL to hand to the user |
Default and admin toolsets
By default the server lists the core tools (62 API operations, the composites and redbark_guide). Nineteen admin tools (API keys, consents, sync category mappings, category reset, ruleset duplicate/reorder, event destination enable/disable/ping/rotate, destination rotate_secret/enable) are hidden but still callable; add ?toolsets=admin to the server URL to list them. The list is also filtered to the scopes you granted.
Prompts and guides
Clients that support MCP prompts get set_up_sync, monthly_spending_review, fix_failing_sync and connect_bank. redbark_guide returns a topic guide (onboarding, syncs and destinations, rules and categories, events and webhooks, errors and scopes, API conventions) generated from the docs, and the server sends short usage instructions on connect.
Every tool takes a context argument: a one-line statement of the goal the user is trying to reach. It is used for product analytics and never contains your banking data.
Example prompts once connected:
"What did I spend on groceries across all my accounts last month?" "What's my total cash balance right now?" "Create a sync from my everyday account to the Budget sheet and run it now." "Add a rule that tags Uber transactions as Travel."
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. Scopes offered on the consent screen:
Scope | Grants |
| Every read tool |
| Holdings and trades (Professional plan) |
|
|
| Connections, consents, institutions; revoke, reauthorize, refresh, link sessions |
| Accounts, balances, transactions, holdings, trades, provider categories |
| Your category taxonomy |
| Destinations and destination links |
| Syncs, runs, category mappings, ruleset attachment |
| Rulesets and rules |
| Events and event destinations |
keys:write is never offered over OAuth: an OAuth-connected agent cannot create API keys. Write scopes are optional. Leave one unticked and the matching tools refuse with a message that names the scope.
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_.... The key's own scopes apply.
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.
Scoped access. The AI can only use the scopes you grant. Reads and each write family are separate. Nothing can touch your bank itself; writes change Redbark syncs, destinations, rules, categories and event destinations only.
Revocable. Revoke a connected app from the dashboard at any time. The server immediately stops accepting its tokens.
Traceable. Every error carries a request id you can quote to support.
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.59234MIT
- 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
- AlicenseNot gradedqualityDmaintenanceConnects AI assistants to 500+ financial data tools from 40+ providers via the Model Context Protocol, enabling natural language queries for financial data.1MIT
- AlicenseNot gradedqualityCmaintenanceEnables 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