Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. BankSync
B
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:42:35 PM

BankSync

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Connect AI agents to bank accounts, transactions, balances, and investments.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "banksync": {
      "command": "npx",
      "args": [
        "-y",
        "banksync"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

BankSync MCP Server

npm version PyPI version License: MIT smithery badge Install with NPX in VS Code

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.

Website Β· Docs Β· Setup Guides Β· Quick Start Β· Tools Reference


Quick Start

Get your API key at banksync.io/developers. BankSync runs as a remote MCP server β€” no install required:

Code
URL:       https://mcp.banksync.io
Transport: Streamable HTTP
Header:    X-API-Key: your-key

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "banksync": {
      "type": "http",
      "url": "https://mcp.banksync.io",
      "headers": {
        "X-API-Key": "your-key"
      }
    }
  }
}
Claude Code
Terminal
claude mcp add --transport http banksync https://mcp.banksync.io \
  --header "X-API-Key: your-key"
Cursor

Add to .cursor/mcp.json:

config.json
{
  "mcpServers": {
    "banksync": {
      "url": "https://mcp.banksync.io",
      "headers": {
        "X-API-Key": "your-key"
      }
    }
  }
}
VS Code (Copilot)

Add to .vscode/mcp.json:

config.json
{
  "servers": {
    "banksync": {
      "type": "http",
      "url": "https://mcp.banksync.io",
      "headers": {
        "X-API-Key": "your-key"
      }
    }
  }
}
Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

config.json
{
  "mcpServers": {
    "banksync": {
      "serverUrl": "https://mcp.banksync.io",
      "headers": {
        "X-API-Key": "your-key"
      }
    }
  }
}
npm package (stdio fallback)

For clients that don't support remote HTTP servers, use the npm package as a local bridge:

Terminal
npx -y @banksync/mcp              # Node.js
pip install banksync-mcp && banksync-mcp  # Python

Set BANKSYNC_API_KEY=your-key as an environment variable. The package bridges stdio to https://mcp.banksync.io automatically.

Example config (any stdio client):

config.json
{
  "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

CategoryToolsWhat They Do
Discoveryget_data_type_schema, list_feed_sourcesDiscover available fields and feed source types
Workspacelist_workspaces, get_workspace, list_integrations, delete_integrationManage workspaces and connected destinations
Bankslist_banks, get_bank, create_bank_link, connect_bank, delete_bankConnect and manage bank connections
Accountslist_accounts, get_accountFetch live account data from institutions
Financial Dataget_transactions, get_balance, get_holdings, get_trades, get_loanQuery transactions, balances, investments, loans
Feedslist_feeds, get_feed, create_feed, update_feed, validate_feed, delete_feedBuild automated data pipelines
Jobslist_jobs, get_job, trigger_sync, cancel_jobRun and monitor sync jobs

How It Works

Code
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 Β· Airtable

See docs/ARCHITECTURE.md for details.

Typical Workflow

Code
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 it

Data Sources

ProviderCoverageData Types
PlaidUS, UK, Canada β€” 12,000+ institutionsTransactions, balances, investments, loans
BasiqAustralia, New Zealand β€” 3,000+ institutionsTransactions, balances
Email extractionGlobalAI-extracted structured data from forwarded emails
File uploadGlobalAI-extracted data from PDFs, images, documents

Sync Destinations

DestinationCapabilities
NotionSync to Notion databases
Google SheetsSync to spreadsheets (row or column direction)
AirtableSync 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:

bash
BANKSYNC_API_KEY=your-key npx @modelcontextprotocol/inspector npx -y @banksync/mcp

Or connect the inspector directly to the remote server:

Terminal
npx @modelcontextprotocol/inspector --url https://mcp.banksync.io --header "X-API-Key: your-key"

Documentation

DocDescription
docs/TOOLS.mdComplete tools reference with parameters and examples
docs/ARCHITECTURE.mdArchitecture, transport, and deployment details
docs/AGENTS.mdGuide for AI agents: best practices, prompt patterns, workflows
CLAUDE.mdContext for AI coding assistants working on this repo
SECURITY.mdSecurity policy and vulnerability reporting
banksync.io/developersFull API documentation
banksync.io/developers/mcp-setupPer-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.

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • M
    Mcp

    Workix hub catalog plus freelance digest/search and proposal helpers for AI agents

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’
  • Blockscout Mcp Server logoBlockscout Mcp Server

    Provide AI agents and automation tools with contextual access to blockchain data including balance…

    πŸ’» Developer Tools0 views
    Compare vs Blockscout Mcp Server β†’

Frequently Asked Questions about BankSync

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "banksync": { "command": "npx", "args": ["-y", "BankSync"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewBankSync AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/banksync?style=directory)](https://allmcps.com/mcp/banksync)
HTML Embed
<a href="https://allmcps.com/mcp/banksync"><img src="https://allmcps.com/api/badge/banksync?style=directory" alt="BankSync on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to BankSync β†’Install in Claude DesktopInstall in CursorInstall in VS Code