Drop a PDF into Claude Desktop or invoke from Cursor and your agent gets back reconciled transactions, account info, and balances. 9,000+ banks supported, no per-bank templates.
Add this snippet to Claude Desktop, Cursor, or Continue config and restart.
{
"mcpServers": {
"docuclipper": {
"command": "npx",
"args": ["-y", "docuclipper-mcp"],
"env": {
"DOCUCLIPPER_PAT": "dcp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}User: Combine the 12 monthly Chase statements in ~/2025/ into one CSV, sorted by date, with a column showing which month each transaction came from.
Claude (calls docuclipper.convert_bank_statement on each, merges):
- 12 statements processed; 12/12 reconciled
- 1,247 transactions across 365 days
- Wrote chase-2025.csv (date, description, amount, balance, source_month){
"documentId": "doc_3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "completed",
"documentType": "bankStatement",
"account": {
"number": "****1234",
"holder": "Acme Corp",
"periodStart": "2026-04-01",
"periodEnd": "2026-04-30",
"openingBalance": 12450.18,
"closingBalance": 18327.42
},
"transactions": [
{ "date": "2026-04-02", "description": "ACH Deposit – Stripe", "amount": 2450.00, "balance": 14900.18 },
{ "date": "2026-04-03", "description": "AWS", "amount": -842.17, "balance": 14058.01 }
],
"reconciled": true
}Same extraction engine as the DocuClipper REST API, surfaced as MCP tools.
Chase, Bank of America, Wells Fargo, Capital One, Citi, US Bank, Truist, plus 9,000+ regional and international banks. No per-bank templates required.
The MCP tool returns structured rows: date, description, amount, running balance, plus account info and a reconciled flag your agent can branch on.
convert_bank_statement handles small files end-to-end. For large statements, use upload_url -> convert_document -> get_job_status -> download_transactions.
Tools are discovered live by your MCP client. Drop a PDF in Claude Desktop or invoke programmatically from Cursor or Continue.
Personal Access Token in DOCUCLIPPER_PAT. Rotate or revoke any time.
command: npx, args: [-y, docuclipper-mcp]. Tool registry fetched on demand so you always get the latest set.