ExpenseBot is the first expense management tool on the official MCP Registry. Two MCP servers:
@expensebot/mcp-server-auth (authenticated) — 13 tools that work with your real ExpenseBot data:
- Search expenses by category, merchant, date, amount
- Submit photo/PDF receipts via base64
- Scan Gmail for receipts on demand
- Create, list, share, download expense reports
- Run deep analytics ("compare Q1 vs Q2 spending")
- Add cash expenses without a receipt
- Check tax deductibility
- Check compliance issues
@expensebot/mcp-server (read-only) — answers questions about ExpenseBot for pre-sales/help.
Auth: Personal Access Tokens generated from Settings → AI Assistant Tokens. 30-day expiry, revokable, scoped to your account only. CASA Tier 2 certified. Free with any ExpenseBot account (60-day free trial).
Overview
ExpenseBot — AI Assistant Integration
ExpenseBot is the first expense management tool on the official MCP Registry. Two MCP servers let Claude Desktop, Cursor, ChatGPT, and any MCP-compatible AI assistant work directly with your ExpenseBot account.
What you can do
- "Show me my Amazon receipts over $50 from last month" → searches your spreadsheet
- "Submit this photo as a receipt" → uploads and AI-processes the image
- "Scan my Gmail for receipts from the last 90 days" → triggers a background scan
- "Create a Q1 travel report and share with my accountant" → builds and shares
- "Why did my spending increase this quarter?" → runs deep analytics
- "Add a $15 cash lunch at Chipotle today" → writes to your spreadsheet
- "Is Uber tax deductible?" → checks tax rules
13 tools
Search expenses · Get spending summary · Deep analytics · Create report · List reports · Get report details · Share report · Submit receipt (photo/PDF) · Add cash expense · Parse natural-language expense · Process Gmail receipts · Scan Gmail · Check compliance · Fix compliance · Check tax deductibility · Search knowledge base
Two servers
| Package | Use case | Auth |
|---|---|---|
@expensebot/mcp-server-auth | Real account data | Personal Access Token |
@expensebot/mcp-server | Pre-sales/help (read-only) | None |
Setup (3 minutes)
- Sign up at expensebot.ai — 60-day free trial, no credit card
- Settings → AI Assistant Tokens → Generate
- Paste into Claude Desktop config:
{
"mcpServers": {
"expensebot": {
"command": "npx",
"args": ["-y", "@expensebot/mcp-server-auth", "--token=YOUR_TOKEN"]
}
}
}
Server Config
{
"mcpServers": {
"expensebot": {
"command": "npx",
"args": [
"-y",
"@expensebot/mcp-server-auth",
"--token=YOUR_EXPENSEBOT_TOKEN"
]
}
}
}