Banking for startups and tech companies.
## Mercury MCP Server: Startup Banking The **Mercury MCP Server** integrates Mercury's startup banking platform into Google Antigravity, enabling developers to manage business banking operations through AI-assisted financial workflows. ### Why Mercury MCP? - **Startup Focused**: Built for startups and tech companies - **Modern Interface**: Clean, developer-friendly platform - **API First**: Comprehensive banking API - **Virtual Cards**: Create unlimited virtual cards - **Treasury**: Automated cash management ### Key Features #### 1. Account Management ```javascript // Get accounts const accounts = await mercury.getAccounts(); console.log("Checking Balance:", accounts.checking.balance); console.log("Savings Balance:", accounts.savings.balance); // Get transactions const transactions = await mercury.getTransactions({ accountId: "account_123", startDate: "2024-12-01", endDate: "2024-12-31" }); // Get pending transactions const pending = await mercury.getPendingTransactions({ accountId: "account_123" }); // Get statements const statements = await mercury.getStatements({ accountId: "account_123", year: 2024 }); ``` #### 2. Payments and Cards ```javascript // Create ACH payment const payment = await mercury.createPayment({ accountId: "account_123", recipientId: "recipient_456", amount: 5000, method: "ach", memo: "Invoice payment" }); // Create virtual card const card = await mercury.createVirtualCard({ accountId: "account_123", name: "Marketing Expenses", limit: 10000, expiresAt: "2025-12-31" }); // Get recipient const recipients = await mercury.getRecipients(); // Create recipient await mercury.createRecipient({ name: "Vendor Inc", email: "billing@vendor.com", accountNumber: "123456789", routingNumber: "021000021" }); ``` ### Configuration ```json { "mcpServers": { "mercury": { "command": "npx", "args": ["-y", "@anthropic/mcp-mercury"], "env": { "MERCURY_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Treasury Automation**: Automate cash management operations. **Expense Management**: Create virtual cards for expenses. **Payment Processing**: Automate vendor and payroll payments. The Mercury MCP Server brings modern banking to your development workflow.
{
"mcpServers": {
"mercury": {}
}
}