mnckapilan/starling_mcp
If you are the rightful owner of starling_mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
This MCP server provides an interface to interact with the Starling Bank API, enabling AI models and other MCP clients to access banking features.
MCP Server for Starling Bank API
A Model Connector Protocol (MCP) server implementation for interfacing with the Starling Bank API.
This project exposes Starling Bank API endpoints as tools compatible with AI models and other MCP clients.
โ ๏ธ Disclaimer
This project is not affiliated with or endorsed by Starling Bank. It is an unofficial, independent open-source implementation using their public API, created for experimentation purposes.Use at your own risk.
Overview
The Starling MCP server wraps the full Starling Bank API in an MCP-compatible interface, enabling you to interact with the following features through an AI model โ like this:
Features exposed include:
- ๐ฆ Account management
- ๐ค Account holder info
- ๐ Address management
- ๐ณ Card controls
- ๐ Direct debits
- ๐ Transaction feeds
- ๐ชช Identity verification
- ๐ธ Payment processing
- ๐ฅ Payee handling
- ๐ผ๏ธ Profile images
- ๐ท Savings goals
- ๐ Spaces (sub-accounts)
- ๐ Spending insights
โ๏ธ Installation
๐ Prerequisites
- Python 3.11+
uv
package manager (fastpip
replacement)- A Starling Bank API token (sandbox)
- ๐ Get one at the Starling Developer Portal
We're working to Dockerize this project so that you won't need to setup Python and uv
in the near future.
๐ Setup
git clone https://github.com/mnckapilan/starling_mcp.git
cd starling_mcp
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv pip install -e .
๐งช Usage / Testing
Using MCP Inspector
You can run and connect to this server to inspect it using MCP Inspector.
Navigate to the root of this cloned repository and run:
npx @modelcontextprotocol/inspector uv --directory . run main.py
Add your Starling API token as STARLING_API_TOKEN
an environment variable in the MCP Inspector.
Claude Desktop
You can use this MCP server locally using Claude Desktop's built-in MCP client support.
In your claude_desktop_config.json
:
{
"mcpServers": {
"starling": {
"command": "uv",
"args": [
"--directory",
"/Your/Absolute/Path/To/starling_mcp",
"run",
"main.py"
],
"env": {
"STARLING_API_TOKEN": "your-starling-api-access-token"
}
}
}
}
See the Claude MCP Server Guide for more detailed step-by-step instructions.
Example usage:
๐งฉ Adding New Tools / Endpoints
- Add an endpoint in
mcp_server/api/
- Register with the MCP server in
app.py
@mcp.tool()
def newFeature(param: str) -> dict:
# Implementation
๐ License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
๐ Contributing
PRs welcome! Open issues, request features, or just star the repo โญ