- Explore MCP Servers
- mcp-money
Mcp Money
What is Mcp Money
mcp-money is an implementation of the Model Context Protocol (MCP) designed for managing wallets using the Nostr Development Kit (NDK) with Cashu ecash functionality, facilitating transactions and wallet operations.
Use cases
Use cases include managing multiple Cashu mints, processing Lightning Network payments, sending zaps to users, and creating deposit invoices for various amounts, making it suitable for developers and users in the cryptocurrency space.
How to use
To use mcp-money, install it via npm with ‘npm install mcp-money’. Start the MCP server by running ‘npx mcp-money’ or use the CLI mode for specific wallet operations like checking balances, creating invoices, and sending payments.
Key features
Key features include Cashu wallet integration, support for the Lightning Network, Nostr Zaps for sending payments, multi-mint support, persistent storage for wallet state, and a command-line interface for direct operations.
Where to use
mcp-money can be used in digital finance applications, cryptocurrency wallets, and any platform that requires secure and efficient management of ecash transactions and wallet functionalities.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Mcp Money
mcp-money is an implementation of the Model Context Protocol (MCP) designed for managing wallets using the Nostr Development Kit (NDK) with Cashu ecash functionality, facilitating transactions and wallet operations.
Use cases
Use cases include managing multiple Cashu mints, processing Lightning Network payments, sending zaps to users, and creating deposit invoices for various amounts, making it suitable for developers and users in the cryptocurrency space.
How to use
To use mcp-money, install it via npm with ‘npm install mcp-money’. Start the MCP server by running ‘npx mcp-money’ or use the CLI mode for specific wallet operations like checking balances, creating invoices, and sending payments.
Key features
Key features include Cashu wallet integration, support for the Lightning Network, Nostr Zaps for sending payments, multi-mint support, persistent storage for wallet state, and a command-line interface for direct operations.
Where to use
mcp-money can be used in digital finance applications, cryptocurrency wallets, and any platform that requires secure and efficient management of ecash transactions and wallet functionalities.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
MCP Money

An MCP (Model Context Protocol) money implementation for Nostr using NDK (Nostr Development Kit) with Cashu ecash functionality.
Features
- Cashu Wallet Integration: Full support for Cashu ecash mints and tokens
- Lightning Network: Deposit via Lightning invoices and pay Lightning invoices
- Nostr Zaps: Send zaps to users using npub or NIP-05 identifiers
- Multi-mint Support: Manage multiple Cashu mints simultaneously
- Persistent Storage: Wallet state saved to local file with mint info caching
- MCP Server: Expose wallet functionality through Model Context Protocol
- CLI Interface: Direct command-line usage for all wallet operations
Installation
npm install mcp-money
Usage
MCP Server Mode (Default)
Run without arguments to start the MCP server:
npx mcp-money
CLI Mode
Use specific commands for direct wallet operations:
# Get total balance
npx mcp-money get_balance
# Get balance per mint
npx mcp-money get_mint_balances
# Create deposit invoice
npx mcp-money deposit 1000 https://testnut.cashu.space
# Pay lightning invoice
npx mcp-money pay lnbc1...
# Send a zap
npx mcp-money zap npub1... 100 "Great post!"
# Add a new mint
npx mcp-money add_mint https://mint.example.com
Authentication
The wallet supports multiple ways to provide your Nostr private key:
- Command line:
--nsec nsec1... - Environment variable:
NSEC=nsec1... - Config file: Automatically saved to
.wallet.json - Auto-generate: Creates new key if none provided
MCP Tools
When running as an MCP server, the following tools are available:
get_balance: Get the total wallet balanceget_mint_balances: Get balance breakdown per mintdeposit: Create a deposit invoice for specified amount and mintpay: Pay a Lightning invoicezap: Send a zap to a useradd_mint: Add a mint to the wallet
Integration with AI Assistants
Claude Code Integration
To use this wallet with Claude Code, add it to your project’s MCP configuration:
{
"mcpServers": {
"mcp-money": {
"command": "npx",
"args": [
"mcp-money"
]
}
}
}
Or install globally and reference the binary directly:
npm install -g mcp-money
{
"mcpServers": {
"mcp-money": {
"command": "mcp-money"
}
}
}
Goose Integration
To use this wallet with Goose, add it to your ~/.config/goose/config.yaml:
If you have an nsec you want to use, you can set it by passing it as --nsec nsec1....
extensions:
money:
args:
- -y
- mcp-money
bundled: null
cmd: npx
description: Money for agents
enabled: true
env_keys: []
envs: {}
name: money
timeout: 300
type: stdio
After adding the configuration, restart your AI assistant to begin using the wallet tools.
Configuration
The wallet automatically creates a .wallet.json file to store:
- Private key (nsec)
- Public key (npub)
- Configured relays
- Configured mints
- Cached mint information
Architecture
Built on top of:
- NDK: Nostr Development Kit for Nostr protocol interactions
- NDK Wallet: Cashu wallet implementation
- Nostr Tools: Low-level Nostr utilities
- Bun: Fast JavaScript runtime and package manager
Security
- Private keys are stored locally in
.wallet.json - Mint information is cached for performance
- All Nostr communications use standard NIP protocols
- Lightning payments require explicit confirmation
License
MIT
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
Support
For issues and questions, please open an issue on the GitHub repository.
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










