Corporate cards and expense automation.
## Ramp MCP Server: Corporate Spend The **Ramp MCP Server** integrates Ramp's corporate card and spend management platform into Google Antigravity, enabling developers to automate expense management through AI-assisted financial workflows. ### Why Ramp MCP? - **5x Faster Closing**: Automated expense categorization - **Smart Controls**: Real-time spending limits and rules - **Cashback Rewards**: 1.5% cashback on all purchases - **Bill Payments**: Unified bill pay and vendor management - **Procurement**: Streamlined purchase requests ### Key Features #### 1. Card and Transaction Management ```javascript // Get cards const cards = await ramp.getCards({ status: "active" }); // Create virtual card const card = await ramp.createCard({ userId: "user_123", displayName: "AWS Expenses", spendingRestrictions: { amount: 5000, interval: "monthly", categories: ["Software", "Cloud Services"] } }); // Get transactions const transactions = await ramp.getTransactions({ cardId: card.id, startDate: "2024-12-01", endDate: "2024-12-31" }); // Update card limit await ramp.updateCard({ cardId: card.id, spendingRestrictions: { amount: 10000 } }); ``` #### 2. Expense and Reimbursement ```javascript // Get receipts const receipts = await ramp.getReceipts({ status: "pending" }); // Match receipt await ramp.matchReceipt({ transactionId: "tx_123", receiptId: "receipt_456" }); // Create reimbursement const reimbursement = await ramp.createReimbursement({ userId: "user_123", amount: 15000, // cents merchant: "Office Depot", memo: "Office supplies" }); // Get spend by department const deptSpend = await ramp.getSpendByDepartment({ startDate: "2024-12-01", endDate: "2024-12-31" }); ``` ### Configuration ```json { "mcpServers": { "ramp": { "command": "npx", "args": ["-y", "@anthropic/mcp-ramp"], "env": { "RAMP_CLIENT_ID": "your-client-id", "RAMP_CLIENT_SECRET": "your-client-secret" } } } } ``` ### Use Cases **Expense Automation**: Automate expense categorization and receipt matching. **Spend Control**: Implement department and category budgets. **Financial Visibility**: Real-time visibility into company spending. The Ramp MCP Server brings intelligent spend management to your workflow.
{
"mcpServers": {
"ramp": {}
}
}