Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables basic banking operations (CRUD) with persistent MongoDB storage, supporting account management and money transfers.

README.md

Banking MCP Server (MongoDB Backend)

A simple Model Context Protocol (MCP) server for basic banking operations (CRUD) using MongoDB as the backend. This project demonstrates how to build an MCP server for account management and money transfers. This readme really needs some lovin. Not everything is documented.

Features

  • Create, delete, and list accounts
  • Deposit, withdraw, and transfer funds
  • Persistent storage with MongoDB

Prerequisites

  • Python 3.8+
  • MongoDB (local or cloud)
  • uv (recommended)

Setup

  1. Clone the repository
   git clone <repository-url>
   cd banking-mcp-server-mdb
  1. Install dependencies
   uv pip install -r requirements.txt
  1. Configure MongoDB

Create a .env file in the project root: ``env MONGO_URI=mongodb://localhost:27017 MONGO_DB=money_transfer_db `` Start your MongoDB server if not already running.

  1. Start the MCP server (Note: This doesn't do anything by itself. It's meant to be called via MCP Clients or toold like ClaudeDesktop)
   ./start_banking_mcp_server_mdb.sh
  1. If running the temporal version for durable MCP, start the temporal worker
   python -m mcp_server.worker

Claude Desktop Configuration

Add this to your /Users/swomack/Library/Application Support/Claude/claude_desktop_config.json file to use the server: ``json "mcpServers": { "bank_accounts": { "command": "/absolute/path/to/banking-mcp-server-mdb/start_banking_mcp_server_mdb.sh", "args": [] } } `` Replace the path with your actual project location.

Available Tools

  • create_account(username, balance=0.0): Create a new account
  • delete_account(username): Delete an account
  • get_account(username): Get account info
  • list_accounts(): List all accounts
  • deposit(username, amount): Deposit funds
  • withdraw(username, amount): Withdraw funds
  • transfer(from_user, to_user, amount): Transfer funds between accounts

Example Usage

Ask Claude:

  • Create an account: Create a bank account for Alice with $100.
  • Transfer funds: Transfer $50 from Alice to Bob.
  • List accounts: Show all accounts.

--- This project is for demonstration purposes only.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Databases servers.