Banking Mcp Server Mdb — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Banking Mcp Server Mdb (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
git clone <repository-url>
cd banking-mcp-server-mdb uv pip install -r requirements.txtCreate a .env file in the project root:
MONGO_URI=mongodb://localhost:27017
MONGO_DB=money_transfer_dbStart your MongoDB server if not already running.
./start_banking_mcp_server_mdb.sh python -m mcp_server.workerAdd this to your /Users/swomack/Library/Application Support/Claude/claude_desktop_config.json file to use the server:
"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.
create_account(username, balance=0.0): Create a new accountdelete_account(username): Delete an accountget_account(username): Get account infolist_accounts(): List all accountsdeposit(username, amount): Deposit fundswithdraw(username, amount): Withdraw fundstransfer(from_user, to_user, amount): Transfer funds between accountsAsk Claude:
Create a bank account for Alice with $100.Transfer $50 from Alice to Bob.Show all accounts.This project is for demonstration purposes only.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.