MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Banksync MCP Server

by Banksynchq
Developer ToolsLow Risk9.7MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

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

About

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

Remote endpoints: streamable-http: https://mcp.banksync.io

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (5 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

13 files analyzed · 2 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

file_system

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your BankSync API key from https://banksync.io/developersRequired

Environment variable: BANKSYNC_API_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

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.


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-key

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  # 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):

{
  "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

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

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:

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

Or connect the inspector directly to the remote server:

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.

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentationnpm PackagePyPI PackageRemote Endpoint

Details

Published March 19, 2026
Version 1.0.2
0 installs
Local & Remote Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
4
Installs
5.3
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
513
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
70
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

120.0K
Stars
28
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
19
Installs
10.0
Security
No ratings yet
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
17
Installs
10.0
Security
5.0
Local