MCP servers for a fintech / finance agent
The MCP server bundle to build an AI that works with payments and financial data.
3 servers · ~26 tools · Last updated June 17, 2026
TL;DR: A finance agent touches money and market data — the highest-trust domain there is. This bundle covers payments, banking connectivity and market data, and every piece should run in sandbox/test mode with human approval before any real transaction.
Bottom line: start with Stripe MCP Server (Agent Toolkit) and add the rest as your needs grow. All 3 install together via the merged config below (~26 tools total).
Tool budget: this stack exposes about 26 tools. That's within Cursor's practical ~40-tool ceiling, so all servers can stay enabled together. Check your own config →
What's in the stack
Create charges, invoices and customers (use restricted keys).
Source ↗One-click config
All 3 servers merged into a single block — pick your client and paste.
{
"mcpServers": {
"stripe-mcp-server-agent-toolkit": {
"command": "npx",
"args": [
"-y",
"@stripe/mcp",
"--tools=all",
"--api-key=<your-stripe-secret-key>"
]
},
"plaid-sandbox-mcp-python": {
"command": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"<your-plaid-client-id>",
"--secret",
"<your-plaid-sandbox-secret>"
]
},
"alpha-vantage-mcp-remote": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.alphavantage.co/mcp?apikey=<your-alpha-vantage-api-key>"
]
}
}
}Paste into ~/Library/Application Support/Claude/claude_desktop_config.json and fully restart Claude Desktop. Replace any placeholder keys/tokens with your own.
Capabilities this stack covers
FAQ
Is it safe to automate payments?
Only with sandbox/test keys by default, restricted scopes, hard limits and human approval for any real money movement.
Why sandbox servers?
They let the agent exercise the full flow without touching real funds — promote to live keys only once behavior is trusted.