Plaid MCP Server — Hosted Ai Integration
MCP Server language Hosted language PublicAccess bank accounts, transactions, balances, institution search, and identity data via Plaid — AI-native financial data access.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"plaid": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-plaid",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify plaid api connectivity by fetching api categories. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-plaid — Plaid Financial Data MCP Server
Access bank accounts, transactions, balances, institution search, and identity data via Plaid — AI-native financial data access.
Give your AI agents access to financial data through Plaid. Retrieve bank account balances, search transactions by date range, look up financial institutions, verify account ownership, and initiate bank connections — all through natural language.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-plaid
What You Can Do
- List linked bank accounts with balances and types
- Get real-time account balances (available, current, limit)
- Search transactions by date range with merchant and category info
- Search 11,000+ financial institutions by name
- Retrieve identity information (name, email, phone, address)
- Create Link tokens to initiate new bank connections
Available Tools
| Tool | Description |
|---|---|
_ping |
Verify Plaid API connectivity |
get_accounts |
List linked accounts with type, balance, and mask |
get_balance |
Get real-time balances for linked accounts |
get_transactions |
Retrieve transactions with merchant, category, and date |
search_institutions |
Search banks by name with product support info |
get_institution |
Get institution details — URL, logo, products, colors |
get_identity |
Retrieve account holder identity information |
create_link_token |
Generate a token to start the bank connection flow |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
PLAID_CLIENT_ID |
Yes | Plaid client ID | dashboard.plaid.com → Team Settings → Keys → client_id |
PLAID_SECRET |
Yes | Plaid secret key (sandbox, development, or production) | dashboard.plaid.com → Team Settings → Keys → select environment → secret |
PLAID_ENV |
No | Environment: sandbox, development, or production (default: sandbox) | Use "sandbox" for testing, "production" for live data |
Sandbox mode: Test with fake bank data using Plaid's sandbox credentials. No real bank connections needed.
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Plaid" and click Add to Workspace
- Add
PLAID_CLIENT_ID,PLAID_SECRET, andPLAID_ENVunder Project → Secrets
Example Prompts
"List all my linked bank accounts and their balances"
"Show transactions from my checking account for the last 30 days"
"Search for Chase bank on Plaid and show me what products they support"
"What's my total available balance across all accounts?"
"Show me all pending transactions"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-plaid \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-PLAID-CLIENT-ID: your-client-id' \
-H 'X-Mcp-Secret-PLAID-SECRET: your-secret' \
-H 'X-Mcp-Secret-PLAID-ENV: sandbox' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_institutions","arguments":{"query":"Chase"}}}'
Security Notes
- Plaid credentials are injected at the Aerostack gateway layer — never stored in the worker
- Access tokens represent linked bank connections — treat them as sensitive secrets
- Use sandbox environment for development and testing
- Transaction data is limited to 500 items per request with pagination support
- Identity data access requires explicit user consent via Plaid Link
License
MIT
terminal Tools (8)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify Plaid API connectivity by fetching API categories. Used internally by Aerostack to validate credentials.
get_accounts #2 List all bank accounts linked to an access token — name, type (checking, savings, credit), balances, mask, and official name
get_balance #3 Get real-time account balances for all accounts linked to an access token — available, current, and limit amounts
get_transactions #4 Retrieve transactions for linked accounts within a date range — amount, merchant, category, date, pending status
search_institutions #5 Search for banks and financial institutions by name — returns institution ID, name, products supported, and country codes
get_institution #6 Get detailed info about a financial institution by ID — name, products, URL, logo, primary color, and supported country codes
get_identity #7 Retrieve identity information (name, email, phone, address) for accounts linked to an access token
create_link_token #8 Create a Plaid Link token to start the bank connection flow — returns a link_token for initializing Plaid Link in your app
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-plaid
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in AI
Browse AI MCPs →Canva Design Platform
by @aerostack
Design creation, AI generation, editing, export, assets, brand kits, folders via Canva's official MCP
Intercom Messaging
by @aerostack
Conversations, contacts, tickets, articles via Intercom's official MCP
Anthropic
by @aerostack
Call Claude models directly — run AI conversations, tool-use chains, batch jobs, and model comparisons from any agent.
Vercel Deployments
by @aerostack
Deployments, projects, domains, env vars, logs via Vercel's official MCP
Gmail
by @aerostack
Read, send, and search Gmail messages — manage labels, drafts, and attachments with full inbox control.
Mailchimp
by @aerostack
Manage audiences, campaigns, and subscriber tags in Mailchimp — automate your email marketing with AI.
Frequently asked questions
What is the Plaid MCP server and what can it do? +
The Plaid MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `get_accounts`, `get_balance`, `get_transactions`, `search_institutions`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Plaid MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Plaid MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Plaid MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Plaid MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-plaid": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-plaid"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Plaid MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-plaid", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-plaid"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Plaid MCP require authentication? +
Yes. Plaid requires authentication. Check the MCP's documentation for the required credentials.