Bookkeeping and accounting for small business.
## Bench MCP Server: Bookkeeping Automation The **Bench MCP Server** integrates Bench's bookkeeping platform into Google Antigravity, enabling developers to access financial statements and bookkeeping data through AI-assisted accounting workflows. ### Why Bench MCP? - **Professional Bookkeeping**: Human bookkeepers with software - **Clean Books**: Monthly reconciled financial statements - **Tax Ready**: Year-end financials for tax preparation - **Real-Time Access**: Up-to-date financial data - **Integrations**: Connects with banks and payment processors ### Key Features #### 1. Financial Statements ```javascript // Get income statement const incomeStatement = await bench.getIncomeStatement({ startDate: "2024-01-01", endDate: "2024-12-31" }); console.log("Revenue:", incomeStatement.revenue); console.log("Net Income:", incomeStatement.netIncome); // Get balance sheet const balanceSheet = await bench.getBalanceSheet({ date: "2024-12-31" }); console.log("Assets:", balanceSheet.totalAssets); console.log("Liabilities:", balanceSheet.totalLiabilities); // Get cash flow statement const cashFlow = await bench.getCashFlowStatement({ startDate: "2024-01-01", endDate: "2024-12-31" }); ``` #### 2. Transaction Management ```javascript // Get transactions const transactions = await bench.getTransactions({ startDate: "2024-12-01", endDate: "2024-12-31", category: "expenses" }); // Get accounts const accounts = await bench.getAccounts(); // Get monthly summary const summary = await bench.getMonthlySummary({ year: 2024, month: 12 }); // Export for taxes const taxExport = await bench.exportTaxPackage({ year: 2024 }); ``` ### Configuration ```json { "mcpServers": { "bench": { "command": "npx", "args": ["-y", "@anthropic/mcp-bench"], "env": { "BENCH_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Financial Reporting**: Generate financial reports programmatically. **Tax Preparation**: Export tax-ready financial data. **Business Intelligence**: Analyze financial performance over time. The Bench MCP Server brings professional bookkeeping to your workflow.
{
"mcpServers": {
"bench": {}
}
}