loading…
Search for a command to run...
loading…
Enables AI agents to interact with Chase Bank accounts to view balances, transactions, statements, and rewards. It provides a secure, read-only interface using
Enables AI agents to interact with Chase Bank accounts to view balances, transactions, statements, and rewards. It provides a secure, read-only interface using browser automation and stored session cookies for natural language financial management.
MCP server for Chase Bank - let AI agents check accounts, view transactions, and manage finances.
Built by Strider Labs for the agentic commerce era.
npm install @striderlabs/mcp-chase
Add to your claude_desktop_config.json:
{
"mcpServers": {
"chase": {
"command": "npx",
"args": ["@striderlabs/mcp-chase"]
}
}
}
This connector uses browser automation and requires stored cookies:
~/.strider/chase/cookies.json~/.strider/chase/| Tool | Description |
|---|---|
chase_auth_check |
Check login status |
chase_auth_clear |
Clear stored session |
chase_accounts |
List all accounts |
chase_balance |
Get account balance |
chase_transactions |
Get transaction history |
chase_bills |
View bill pay payees |
chase_transfers |
View transfer history |
chase_statements |
Get account statements |
chase_rewards |
Check rewards balance |
chase_transfer_preview |
Preview a transfer (manual completion) |
chase_bill_pay_preview |
Preview a bill payment (manual completion) |
// Check if logged in
const auth = await chase_auth_check();
// Get all accounts
const accounts = await chase_accounts();
// Get transactions for an account
const txns = await chase_transactions({ accountId: accounts[0].id, limit: 10 });
// Check rewards
const rewards = await chase_rewards();
MIT - Strider Labs
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"chase-mcp-server": {
"command": "npx",
"args": []
}
}
}