This server connects Claude to the Recite receipt processing API and maintains a local ledger for bookkeeping workflows. You get 41 API tools covering scans (file, URL, or base64), transactions with filters, batch processing for up to 20 receipts at once, webhook subscriptions for async job completion, reconciliation links and auto-matching, vendor and category management, and CSV/JSON exports. The local tools let you scan directly into a ledger file, process entire directories of receipts, store agent instructions in persistent memory, and run dry-run previews before committing changes. Useful if you're building an expense tracking agent that needs both cloud OCR and local-first data control. Requires an API key from recite.rivra.dev, which includes 30 free scans monthly.
mcp-name: io.github.rivradev/recite-mcp
recite-mcp is an MCP server for the Recite API. It provides the full documented Recite MCP surface for scans, transactions, imports, batch jobs, projects, summaries, webhooks, rules, usage, and exports, while preserving the local ledger/memory workflow for agents that want local-first bookkeeping.
Recommended:
uvx recite-mcp
Alternative (pipx):
pipx install recite-mcp
Alternative (pip):
python -m pip install recite-mcp
python -m pip install -e .[dev]
pytest -q
python -m recite_mcp.server
Get an API key at https://recite.rivra.dev/settings/api (includes 30 free scans per month), then set RECITE_API_KEY (required to process receipts; server can still start without it so validate_setup() can report what's missing):
# Windows PowerShell
$env:RECITE_API_KEY="re_live_xxx"
# macOS/Linux
export RECITE_API_KEY="re_live_xxx"
Optional home override:
# Windows PowerShell
$env:RECITE_HOME="C:\path\to\recite-home"
# macOS/Linux
export RECITE_HOME="$HOME/.config/recite"
Copy-paste this config:
{
"mcpServers": {
"recite": {
"command": "uvx",
"args": ["recite-mcp"],
"env": {
"RECITE_API_KEY": "re_live_xxx"
}
}
}
}
If installed via pipx or pip, use:
{
"mcpServers": {
"recite": {
"command": "recite-mcp",
"args": [],
"env": {
"RECITE_API_KEY": "re_live_xxx"
}
}
}
}
mcp-name: io.github.rivradev/recite-mcp, then bump version and upload new PyPI release before publishing to Registry.RECITE_API_KEY missing or invalidvalidate_setup() reports missing_api_key or API requests are rejected.RECITE_API_KEY in MCP client env config (preferred) or shell environment.uvx command not founduvx is not recognized.uv first, or use one of the alternatives:
pipx install recite-mcppython -m pip install recite-mcprecite-mcp command not found after installpipx/pip install.pipx: run pipx ensurepath, then reopen terminal.pip: run with module entrypoint: python -m recite_mcp.serveruvx vs recite-mcp).recite-mcp --validate (or uvx recite-mcp --validate) to print local config/health JSON. Exit code is 0 if an API key is present, otherwise 1.API tools (41 total):
scan_receipt (file, URL, base64, or raw text; ephemeral mode), get_scanimport_transactions (JSON list, CSV text, or CSV file)submit_batch_scans (1–20 items, async, webhook notification), get_batch_scan_status, get_batch_scan_resultsget_summary (period, date range, group-by)transaction.created/updated/deleted, batch.completed)create_reconciliation_link, list_reconciliation_links, update_reconciliation_link, delete_reconciliation_link, run_auto_match, get_reconciliation_summary, get_reconciliation_recommendations, export_reconciliationget_categories (17 built-in + custom), create_category, delete_categoryget_vendors, create_vendor, delete_vendorget_usage (period, breakdown)export_transactions (CSV/JSON, optional file save)Local tools:
process_receipt — scan + ledger append in one step (optional rename, dry-run, category hint)process_receipts_batch — scan a directory of images/PDFs (recursive, dry-run preview)summarize_ledger, export_ledger, add_ledger_correction — local CSV ledger managementupdate_memory, list_memory — persistent agent instruction storageget_config, validate_setup — configuration inspection and health checkResources: recite://ledger, recite://memory, recite://health
docs/user_guide.mdRECITE_API_KEY*secretRecite API key used for receipt processing requests.
RECITE_HOMEOptional local data directory for config, ledger, and memory files.
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent