Corporate cards and spend management for startups.
## Brex MCP Server: Corporate Cards The **Brex MCP Server** integrates Brex's corporate card and spend management platform into Google Antigravity, enabling developers to manage company spending through AI-assisted financial workflows. ### Why Brex MCP? - **Instant Cards**: Virtual and physical cards in minutes - **Smart Limits**: Dynamic spending limits based on rules - **Expense Management**: Automatic receipt matching - **Rewards**: Cash back on business spending - **Integrations**: Sync with accounting software ### Key Features #### 1. Card and Transaction Management ```javascript // Create virtual card const card = await brex.createCard({ userId: "user_123", cardType: "virtual", spendingLimit: { amount: 5000, currency: "USD" }, cardName: "Marketing Expenses" }); // Get transactions const transactions = await brex.getTransactions({ cardId: card.id, startDate: "2024-12-01", endDate: "2024-12-31" }); // Lock card await brex.lockCard({ cardId: card.id }); // Update spending limit await brex.updateCardLimit({ cardId: card.id, limit: { amount: 10000, currency: "USD" } }); ``` #### 2. Expense and Budget Management ```javascript // Create expense report const expense = await brex.createExpense({ transactionId: "tx_123", memo: "Client dinner", category: "meals_entertainment", receipt: receiptBase64 }); // Get budget status const budget = await brex.getBudget({ budgetId: "budget_456" }); console.log("Spent:", budget.spent); console.log("Remaining:", budget.remaining); // Create budget await brex.createBudget({ name: "Q1 Marketing", amount: 50000, currency: "USD", period: "monthly" }); ``` ### Configuration ```json { "mcpServers": { "brex": { "command": "npx", "args": ["-y", "@anthropic/mcp-brex"], "env": { "BREX_API_TOKEN": "your-api-token" } } } } ``` ### Use Cases **Expense Automation**: Automate expense reporting and categorization. **Spend Control**: Implement spending policies programmatically. **Financial Visibility**: Real-time visibility into company spending. The Brex MCP Server brings corporate spend management to your workflow.
{
"mcpServers": {
"brex": {}
}
}