Bookkeeping and CFO services for startups.
## Pilot MCP Server: Financial Operations The **Pilot MCP Server** integrates Pilot's financial operations platform into Google Antigravity, enabling developers to access bookkeeping, CFO services, and financial data through AI-assisted workflows. ### Why Pilot MCP? - **Expert Bookkeeping**: Professional bookkeeping for startups - **CFO Services**: Strategic financial guidance - **Tax Preparation**: Year-end tax packages - **R&D Credits**: Maximize R&D tax credits - **Investor Reports**: Board-ready financial reports ### Key Features #### 1. Financial Statements ```javascript // Get income statement const incomeStatement = await pilot.getIncomeStatement({ startDate: "2024-01-01", endDate: "2024-12-31" }); console.log("Revenue:", incomeStatement.totalRevenue); console.log("Expenses:", incomeStatement.totalExpenses); console.log("Net Income:", incomeStatement.netIncome); // Get balance sheet const balanceSheet = await pilot.getBalanceSheet({ asOfDate: "2024-12-31" }); // Get cash flow const cashFlow = await pilot.getCashFlowStatement({ startDate: "2024-01-01", endDate: "2024-12-31" }); // Get burn rate const burnRate = await pilot.getBurnRate({ months: 6 }); ``` #### 2. Metrics and Reports ```javascript // Get key metrics const metrics = await pilot.getKeyMetrics({ period: "monthly", year: 2024 }); console.log("MRR:", metrics.mrr); console.log("Runway:", metrics.runway); // Get board report const boardReport = await pilot.getBoardReport({ month: "2024-12" }); // Get transactions const transactions = await pilot.getTransactions({ startDate: "2024-12-01", endDate: "2024-12-31", category: "payroll" }); // Export for investors const investorPackage = await pilot.exportInvestorReport({ quarter: "Q4", year: 2024 }); ``` ### Configuration ```json { "mcpServers": { "pilot": { "command": "npx", "args": ["-y", "@anthropic/mcp-pilot"], "env": { "PILOT_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Startup Finance**: Access clean financial data for startups. **Investor Relations**: Generate investor-ready reports. **Financial Planning**: Track burn rate and runway. The Pilot MCP Server brings startup finance to your development workflow.
{
"mcpServers": {
"pilot": {}
}
}