@striderlabs/mcp-cashapp
Allows retrieving Bitcoin balance and its current USD value from a connected Cash App account.
Provides tools to manage Cash App accounts, including logging in, checking balances, sending/receiving money, viewing and managing transactions, handling payment requests, getting contacts, checking Bitcoin balance, viewing Cash Card info, and retrieving available boosts.
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., "@@striderlabs/mcp-cashappsend $25 to $sarah for dinner"
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.
@striderlabs/mcp-cashapp
An MCP (Model Context Protocol) server connector for Cash App payments, powered by Playwright browser automation.
Overview
This package provides an MCP server that exposes Cash App functionality as tools for AI assistants like Claude. It uses Playwright to automate the Cash App web interface.
Installation
npm install -g @striderlabs/mcp-cashappOr install from source:
git clone https://github.com/markswendsen-code/mcp-cashapp.git
cd mcp-cashapp
npm install
npm run buildUsage
As an MCP Server
Add to your MCP client configuration (e.g., Claude Desktop's claude_desktop_config.json):
{
"mcpServers": {
"cashapp": {
"command": "striderlabs-mcp-cashapp"
}
}
}Or run directly:
striderlabs-mcp-cashappPrerequisites
Node.js >= 18
Playwright Chromium browser (installed automatically with
npm install)
After installing, run:
npx playwright install chromiumTools
cashapp_login
Log in to Cash App with your credentials. Must be called before any other tool.
Parameters:
email_or_phone(string, required): Email address or phone numberpassword(string, required): Account password
Returns: { success: boolean, message: string }
cashapp_get_balance
Get the current Cash App balance.
Parameters: None
Returns: { balance: string, currency: string }
cashapp_get_transactions
Get recent transaction history.
Parameters:
limit(number, optional): Maximum number of transactions to return (default: 10)
Returns: Array of transaction objects:
[
{
"id": "txn_123",
"type": "sent | received | request",
"amount": 25.00,
"note": "Lunch",
"recipient": "$johndoe",
"date": "Jan 15",
"status": "completed"
}
]cashapp_get_transaction_details
Get detailed information about a specific transaction.
Parameters:
transaction_id(string, required): Transaction ID
Returns: Single transaction object
cashapp_send_money
Send money to another Cash App user.
Parameters:
recipient(string, required): Recipient's $Cashtag, phone, or emailamount(number, required): Amount in USDnote(string, required): Payment note/memo
Returns: { success: boolean, message: string, transactionId?: string }
cashapp_request_money
Request money from another Cash App user.
Parameters:
recipient(string, required): Recipient's $Cashtag, phone, or emailamount(number, required): Amount in USD to requestnote(string, required): Reason for the request
Returns: { success: boolean, message: string }
cashapp_get_pending_requests
Get all pending payment requests.
Parameters: None
Returns: Array of pending request objects:
[
{
"id": "req_123",
"from": "$janedoe",
"amount": 10.00,
"note": "Coffee",
"date": "Jan 15"
}
]cashapp_accept_request
Accept a pending payment request.
Parameters:
request_id(string, required): Request ID to accept
Returns: { success: boolean, message: string }
cashapp_decline_request
Decline a pending payment request.
Parameters:
request_id(string, required): Request ID to decline
Returns: { success: boolean, message: string }
cashapp_get_contacts
Get your Cash App contacts/friends list.
Parameters: None
Returns: Array of contact objects:
[
{
"id": "contact_0",
"name": "Jane Doe",
"cashtag": "$janedoe"
}
]cashapp_get_bitcoin_balance
Get your Bitcoin balance and current USD value.
Parameters: None
Returns: { btcBalance: string, usdValue: string }
cashapp_get_card_info
Get information about your Cash Card.
Parameters: None
Returns:
{
"cardNumber": "•••• •••• •••• 1234",
"status": "Active",
"type": "Cash Card",
"expiryDate": "12/26"
}cashapp_get_boosts
Get available Cash Card Boosts (discounts).
Parameters: None
Returns: Array of boost objects:
[
{
"name": "10% off DoorDash",
"discount": "10%",
"category": "Food",
"isActive": false
}
]Example Usage with Claude
You: Please log in to Cash App with my credentials and check my balance.
Claude: I'll use the cashapp_login tool to log in, then check your balance.
[calls cashapp_login]
[calls cashapp_get_balance]
Your Cash App balance is $245.50.Security Notice
⚠️ Important Security Considerations:
Never share your Cash App credentials with untrusted parties
This tool automates real financial transactions — use with caution
All credentials are only used for the current session and are not stored
Use only on trusted, secure machines
Consider using a dedicated account for testing
Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# Run in development
npm run devLicense
MIT
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
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/markswendsen-code/mcp-cashapp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server