Plaid MCP Server
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., "@Plaid MCP ServerShow me my account balances"
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.
Plaid MCP Server (Python)
A Model Context Protocol (MCP) server for integrating with Plaid's API in sandbox mode. This server provides tools for linking bank accounts, retrieving transactions, balances, and account information.
Features
Create Link tokens for Plaid Link initialization
Exchange public tokens for access tokens
Retrieve account information
Fetch transactions within date ranges
Get real-time balance information
Related MCP server: plaid-mcp
Prerequisites
Python 3.10 or higher
pip or uv package manager
Plaid account with sandbox credentials
Setup
1. Get Plaid Credentials
Sign up at Plaid Dashboard
Navigate to Developers > Keys
Copy your
client_idandsandboxsecret
2. Install Dependencies
Using pip:
pip install -e .Or using uv (faster):
uv pip install -e .3. Configure Environment
cp .env.example .envEdit .env and add your credentials:
PLAID_CLIENT_ID=your_client_id_here
PLAID_SECRET=your_sandbox_secret_hereUsage
Running the Server
python -m plaid_mcp_server.serverOr if installed:
plaid-mcp-serverGetting a Sandbox Access Token
For testing, run the sandbox setup script:
python sandbox_setup.pyThis will create a test Plaid item and give you an access token to use with the MCP tools.
Available Tools
1. create_link_token
Create a Link token for initializing Plaid Link.
Parameters:
user_id(required): Unique ID for the userclient_name(required): Name of your applicationproducts(optional): Array of products (default: ["transactions"])country_codes(optional): Array of country codes (default: ["US"])language(optional): Language code (default: "en")
2. exchange_public_token
Exchange a public token for an access token.
Parameters:
public_token(required): Public token from Plaid Link
3. get_accounts
Retrieve account information.
Parameters:
access_token(required): Access token for the linked item
4. get_transactions
Fetch transactions within a date range.
Parameters:
access_token(required): Access token for the linked itemstart_date(required): Start date (YYYY-MM-DD)end_date(required): End date (YYYY-MM-DD)
5. get_balance
Get real-time balance information.
Parameters:
access_token(required): Access token for the linked item
Testing in Sandbox
The server is configured to use Plaid's sandbox environment. Use these test credentials when testing with Plaid Link:
Username:
user_goodPassword:
pass_good
See Plaid's Sandbox Guide for more test credentials and scenarios.
Development
Project Structure
plaid-mcp-python/
├── src/
│ └── plaid_mcp_server/
│ ├── __init__.py
│ └── server.py # Main MCP server implementation
├── sandbox_setup.py # Script to create test access tokens
├── requirements.txt # Python dependencies
├── pyproject.toml # Project metadata and build config
├── .env.example # Environment variables template
└── README.mdCode Style
This implementation follows Python best practices:
Type hints for better IDE support and type checking
Async/await for concurrent operations
Proper error handling with specific exceptions
PEP 8 style guide compliance
Docstrings for all modules and functions
Connecting to Claude Desktop
To use this MCP server with Claude Desktop, add the following to your Claude Desktop config:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"plaid": {
"command": "python",
"args": ["-m", "plaid_mcp_server.server"],
"cwd": "/absolute/path/to/plaid-mcp-python",
"env": {
"PLAID_CLIENT_ID": "your_client_id_here",
"PLAID_SECRET": "your_sandbox_secret_here"
}
}
}
}Or if using uv:
{
"mcpServers": {
"plaid": {
"command": "uv",
"args": ["run", "plaid-mcp-server"],
"cwd": "/absolute/path/to/plaid-mcp-python",
"env": {
"PLAID_CLIENT_ID": "your_client_id_here",
"PLAID_SECRET": "your_sandbox_secret_here"
}
}
}
}After updating the config, restart Claude Desktop.
License
MIT
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
- Flicense-qualityDmaintenanceAn MCP server that exposes Enable Banking API tools for interacting with bank accounts through Open Banking. It enables users to authenticate sessions, list accounts, and fetch transaction history or balances via a secure self-hosted server.2
- Flicense-qualityCmaintenanceSelf-hosted MCP server enabling Claude to query bank accounts, balances, and transactions through Plaid with OAuth and TLS.
- Alicense-qualityCmaintenanceA local MCP server that provides read-only SQL access to financial accounts via Plaid, enabling natural language queries about transactions, balances, and holdings.MIT
- Flicense-qualityDmaintenanceA self-hosted MCP server that lets Claude query your bank accounts, balances, and transactions through Plaid.1
Related MCP Connectors
MCP server integrating with Stripe - tools for customers, products, payments, and more.
An MCP server that integrates with Discord to provide AI-powered features.
A MCP server built for developers enabling Git based project management with project and personal…
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/argotdev/plaid-mcp-python'
If you have feedback or need assistance with the MCP directory API, please join our Discord server