BankSync MCP Server
Sync financial data to Airtable tables, enabling automated pipelines for bank data into Airtable bases.
Sync financial data to Google Sheets spreadsheets, supporting row or column direction for flexible data layout.
Sync financial data to Notion databases, allowing automated updates of transactions, balances, and other bank data into Notion.
Click 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., "@BankSync MCP Servershow my checking account balance"
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.
BankSync MCP Server
Talk to your bank data. Connect AI agents to real bank accounts — transactions, balances, investments, and loans — across 15,000+ financial institutions.
BankSync MCP is an open Model Context Protocol server with 28 tools that gives Claude, ChatGPT, Cursor, VS Code, and other AI agents secure, read-write access to your financial data. Sync to Notion, Google Sheets, and Airtable — all through conversation.
Quick Start
Get your API key at banksync.io/developers. BankSync runs as a remote MCP server — no install required:
URL: https://mcp.banksync.io
Transport: Streamable HTTP
Header: X-API-Key: your-keyRelated MCP server: Lunch Flow MCP Server
Setup
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"banksync": {
"type": "http",
"url": "https://mcp.banksync.io",
"headers": {
"X-API-Key": "your-key"
}
}
}
}claude mcp add --transport http banksync https://mcp.banksync.io \
--header "X-API-Key: your-key"Add to .cursor/mcp.json:
{
"mcpServers": {
"banksync": {
"url": "https://mcp.banksync.io",
"headers": {
"X-API-Key": "your-key"
}
}
}
}Add to .vscode/mcp.json:
{
"servers": {
"banksync": {
"type": "http",
"url": "https://mcp.banksync.io",
"headers": {
"X-API-Key": "your-key"
}
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"banksync": {
"serverUrl": "https://mcp.banksync.io",
"headers": {
"X-API-Key": "your-key"
}
}
}
}For clients that don't support remote HTTP servers, use the npm package as a local bridge:
npx -y @banksync/mcp # Node.js
pip install banksync-mcp && banksync-mcp # PythonSet BANKSYNC_API_KEY=your-key as an environment variable. The package bridges stdio to https://mcp.banksync.io automatically.
Example config (any stdio client):
{
"mcpServers": {
"banksync": {
"command": "npx",
"args": ["-y", "@banksync/mcp"],
"env": {
"BANKSYNC_API_KEY": "your-key"
}
}
}
}Setup guides for all clients: banksync.io/developers/mcp-setup
What You Can Do
Ask your AI agent questions like:
"What were my biggest expenses last month?"
"How much do I have across all my accounts?"
"Show my investment portfolio performance"
"Sync my transactions to Notion every week"
"What's my outstanding loan balance?"
Tools
28 tools across 7 categories. Full reference with parameters and examples: docs/TOOLS.md
Category | Tools | What They Do |
Discovery |
| Discover available fields and feed source types |
Workspace |
| Manage workspaces and connected destinations |
Banks |
| Connect and manage bank connections |
Accounts |
| Fetch live account data from institutions |
Financial Data |
| Query transactions, balances, investments, loans |
Feeds |
| Build automated data pipelines |
Jobs |
| Run and monitor sync jobs |
How It Works
AI Agent (Claude, ChatGPT, Cursor, ...)
↓ Streamable HTTP
mcp.banksync.io (Cloudflare Workers)
↓ Bank APIs
Plaid (US/UK/CA) · Basiq (AU/NZ)
↓ Sync
Notion · Google Sheets · AirtableSee docs/ARCHITECTURE.md for details.
Typical Workflow
1. list_workspaces → find your workspace
2. list_banks → see connected banks
3. list_accounts → discover accounts
4. get_transactions → fetch financial data
5. list_integrations → find your Notion/Sheets connection
6. get_data_type_schema → discover available field mappings
7. create_feed → set up an automated pipeline
8. trigger_sync → run itData Sources
Provider | Coverage | Data Types |
Plaid | US, UK, Canada — 12,000+ institutions | Transactions, balances, investments, loans |
Basiq | Australia, New Zealand — 3,000+ institutions | Transactions, balances |
Email extraction | Global | AI-extracted structured data from forwarded emails |
File upload | Global | AI-extracted data from PDFs, images, documents |
Sync Destinations
Destination | Capabilities |
Notion | Sync to Notion databases |
Google Sheets | Sync to spreadsheets (row or column direction) |
Airtable | Sync to Airtable tables |
Security
API key authentication — keys scoped per workspace
All data encrypted in transit (TLS)
Role-based permissions (owner/admin/editor/viewer)
BankSync never stores banking credentials — delegated to Plaid/Basiq
Stateless MCP transport — no session data persisted
See SECURITY.md for our security policy and vulnerability reporting.
Debugging
Use the MCP Inspector to test and debug the server:
BANKSYNC_API_KEY=your-key npx @modelcontextprotocol/inspector npx -y @banksync/mcpOr connect the inspector directly to the remote server:
npx @modelcontextprotocol/inspector --url https://mcp.banksync.io --header "X-API-Key: your-key"Documentation
Doc | Description |
Complete tools reference with parameters and examples | |
Architecture, transport, and deployment details | |
Guide for AI agents: best practices, prompt patterns, workflows | |
Context for AI coding assistants working on this repo | |
Security policy and vulnerability reporting | |
Full API documentation | |
Per-client setup guides |
Privacy Policy
BankSync's privacy policy is available at banksync.io/privacy. BankSync never stores banking credentials — authentication is delegated to Plaid and Basiq. API keys are scoped per workspace and all data is encrypted in transit.
License
MIT — see LICENSE.
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.
Latest Blog Posts
- 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/banksynchq/banksync-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server