Monzo MCP Server
Provides read-only access to Monzo bank accounts, including balance tracking, transaction history, subscription detection, savings pots, and push notifications.
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., "@Monzo MCP Serverhow much did I spend on groceries last week?"
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.
Monzo MCP Server
Give Claude AI read-only access to your Monzo bank account through the Model Context Protocol.
Overview
This MCP server enables Claude to securely interact with your Monzo bank account, providing insights into your spending habits, account balances, and transaction history—all through natural conversation.
Key Features
Feature | Description |
Account Overview | View all Monzo accounts (current, joint, Flex) |
Balance Tracking | Real-time balance and daily spending |
Transaction History | Browse up to 90 days of transactions |
Smart Analysis | Detect subscriptions and frequent merchants |
Savings Pots | Monitor your savings goals |
Push Notifications | Send custom alerts to your Monzo app |
Security First
Read-only access — Cannot move money or modify account settings
OAuth 2.0 — Industry-standard authentication
Local tokens — Credentials never leave your machine
Open source — Full transparency, audit the code yourself
Related MCP server: Monarch Money MCP Server
Architecture
┌─────────────────────────────────────────────────────────────────┐
│ Claude AI │
└─────────────────────────────────────────────────────────────────┘
│
│ MCP Protocol (stdio)
▼
┌─────────────────────────────────────────────────────────────────┐
│ Monzo MCP Server │
│ ┌───────────────────────────────────────────────────────────┐ │
│ │ FastMCP │ │
│ │ ┌─────────┐ ┌──────────────┐ ┌──────────┐ ┌───────────┐ │ │
│ │ │Accounts │ │ Transactions │ │ Analysis │ │ Pots │ │ │
│ │ │ Tools │ │ Tools │ │ Tools │ │ Tools │ │ │
│ │ └────┬────┘ └──────┬───────┘ └────┬─────┘ └─────┬─────┘ │ │
│ └───────┼─────────────┼──────────────┼─────────────┼────────┘ │
│ └─────────────┴──────────────┴─────────────┘ │
│ │ │
│ ┌────────▼────────┐ │
│ │ Monzo Client │ │
│ │ (async httpx) │ │
│ └────────┬────────┘ │
└──────────────────────────────┼──────────────────────────────────┘
│
│ HTTPS + Bearer Token
▼
┌─────────────────────┐
│ Monzo API │
│ api.monzo.com │
└─────────────────────┘Quick Start
Prerequisites
Python 3.11+
A Monzo account
Claude Code CLI
1. Create a Monzo Developer App
Visit developers.monzo.com
Sign in and click "New OAuth Client"
Configure your app:
Field
Value
Name
Claude MCP(or anything you like)Redirect URL
http://localhost:8080/callbackConfidentiality
ConfidentialSave your Client ID and Client Secret
2. Install the Server
# Clone the repository
git clone https://github.com/yourusername/monzo-mcp.git
cd monzo-mcp
# Create virtual environment
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install in development mode
pip install -e .3. Configure Credentials
# Copy example configuration
cp .env.example .env
# Add your credentials to .env
MONZO_CLIENT_ID=oauth2client_xxxxx
MONZO_CLIENT_SECRET=mnzconf.xxxxx4. Authenticate with Monzo
python scripts/auth.pyThis opens your browser for Monzo login. After approving:
Important: Open your Monzo app within 5 minutes to approve the login request, otherwise you'll be limited to 90 days of transaction history.
5. Connect to Claude Code
Add to your Claude Code configuration (~/.claude.json or project .mcp.json):
{
"mcpServers": {
"monzo": {
"command": "/path/to/monzo-mcp/venv/bin/python",
"args": ["-m", "monzo_mcp.server"],
"cwd": "/path/to/monzo-mcp"
}
}
}Available Tools
Account Tools
Tool | Parameters | Description |
| — | List all Monzo accounts with IDs |
|
| Current balance, total balance, today's spending |
Transaction Tools
Tool | Parameters | Description |
|
| Recent transactions (default: 20, max: 100) |
|
| Detailed info including merchant address |
Analysis Tools
Tool | Parameters | Description |
|
| Detect recurring payments (Netflix, Spotify, etc.) |
|
| Find merchants you visit often |
Savings Tools
Tool | Parameters | Description |
|
| All savings pots with balances and goals |
Notification Tools
Tool | Parameters | Description |
|
| Push notification to Monzo app |
Example Conversations
You: "What's my current balance?"
Claude: Uses get_accounts then get_balance
Your current account balance is £1,234.56. You've spent £45.20 today.
You: "Show me my subscriptions"
Claude: Uses list_subscriptions
I found 4 recurring payments:
Netflix: £15.99/month
Spotify: £10.99/month
iCloud: £2.99/month
Estimated monthly total: £29.97
You: "Where do I spend the most money?"
Claude: Uses list_frequent_merchants
Your top merchants this month:
Tesco (12 transactions) - £156.78
TfL (8 transactions) - £42.50
Pret A Manger (6 transactions) - £31.20
Project Structure
monzo-mcp/
├── src/monzo_mcp/
│ ├── __init__.py # Package metadata
│ ├── server.py # MCP server entry point
│ ├── monzo_client.py # Async Monzo API client
│ ├── models.py # Data classes & exceptions
│ ├── constants.py # Configuration constants
│ ├── utils.py # Shared utilities
│ ├── analysis.py # Subscription detection logic
│ └── tools/
│ ├── __init__.py # Tool registration
│ ├── accounts.py # Account tools
│ ├── transactions.py # Transaction tools
│ ├── analysis.py # Analysis tools
│ ├── pots.py # Pot tools
│ └── feed.py # Feed/notification tools
├── scripts/
│ └── auth.py # OAuth authentication flow
├── pyproject.toml # Package configuration
├── .env.example # Environment template
└── README.mdLimitations
Limitation | Reason |
90-day history | Monzo's Strong Customer Authentication (SCA) requirement |
Personal use only | Monzo API terms prohibit public applications |
Rate limits | API calls are throttled; avoid rapid requests |
No money movement | Intentional design choice for security |
Troubleshooting
"Access token expired"
python scripts/auth.pyRe-authenticate and approve in the Monzo app.
"Rate limited"
Wait 5-10 minutes before making more requests.
"No transactions found"
Ensure you approved the login in your Monzo app within 5 minutes of authenticating.
Server won't start
Check that your virtual environment is activated and credentials are in .env.
Development
# Install dev dependencies
pip install -e ".[dev]"
# Run linting
ruff check src/
# Run type checking
mypy src/
# Run tests
pytestContributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
Monzo for their excellent API
Anthropic for Claude and the MCP protocol
FastMCP for the MCP server framework
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.
Latest Blog Posts
- 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/anastasiakrause/monzo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server