This server gives Claude the ability to parse cryptocurrency CSVs and bank statement PDFs into normalized transaction data for tax software. It exposes three tools: parse_crypto_csv for handling exports from 14 exchanges including Coinbase, Kraken, and Binance, parse_bank_statement for extracting transactions from PDFs, and list_supported_sources to see what formats work. The output converts to Koinly, TurboTax, CoinLedger, or ZenLedger formats. Requires a TaxFormatter API key. Useful when you're building tax prep workflows, consolidating financial data from multiple sources, or letting an agent handle messy exchange exports without writing custom parsers for each platform.
Public tool metadata for what this MCP can expose to an agent.
parse_crypto_csvParse a crypto exchange CSV (Coinbase, Binance, Kraken, etc.) and convert to a tax software format. Auto-detects the exchange if not specified.3 paramsParse a crypto exchange CSV (Coinbase, Binance, Kraken, etc.) and convert to a tax software format. Auto-detects the exchange if not specified.
exchangestringfile_pathstringoutput_formatstringkoinly · turbotax · coinledger · zenledgerparse_bank_statementParse a bank statement PDF (Chase, Mercury, Navy Federal, etc.) and extract transactions as structured data. Auto-detects the bank.2 paramsParse a bank statement PDF (Chase, Mercury, Navy Federal, etc.) and extract transactions as structured data. Auto-detects the bank.
bankstringfile_pathstringlist_supported_sourcesList all supported crypto exchanges and banks. No arguments.List all supported crypto exchanges and banks. No arguments.
No parameter schema in public metadata yet.
REST API · MCP Server · Node SDK · Python SDK · Consumer Dashboard
TaxFormatter turns messy financial exports into structured, tax-ready data — for humans and for AI agents.
Drop a CSV from Coinbase, a ZIP from Kraken, a .tar.gz from Binance, or a PDF statement from Chase, and get back a clean, normalized transaction set you can pipe into Koinly, TurboTax, CoinLedger, ZenLedger — or straight into your own software.
Exchange CSV Clean, normalized
Bank PDF → transactions (JSON / CSV)
XLSX / ZIP / TAR.GZ + AI-generated insights
Ship a crypto-tax or bank-ingestion feature into your product in an afternoon.
POST /v1/parse — upload a CSV or PDF, get structured JSON backGET /v1/sources — list every supported exchange, bank, and output formatGET /v1/usage — monthly quota, RPM limit, current consumptionGET /v1/health — liveness probeX-API-Key header with tf_live_* keys (SHA-256 hashed at rest)https://api.taxformatter.comGive Claude, Cursor, Windsurf, or any MCP-compatible agent the ability to parse crypto and bank data directly.
npx @taxformatter/mcp-server
| Tool | What it does |
|---|---|
parse_crypto_csv | Auto-detects the exchange, returns normalized transactions |
parse_bank_statement | Extracts transactions from bank statement PDFs |
list_supported_sources | Queries every supported source + output format |
@taxformatter/sdk — promise-based, fully typedtaxformatter — idiomatic, type-hintedExchanges: Coinbase · Kraken · Gemini · Binance · Robinhood · Crypto.com · PayPal · Cash App · Venmo · KuCoin · Bybit · FTX · Bitfinex · OKX
Banks: Chase · Mercury · Navy Federal · Bank of America · Wells Fargo · Citi · Capital One
Export formats: Koinly · TurboTax (Form 8949) · CoinLedger · ZenLedger
Every parsed file comes back with actionable analysis — scaled to your plan.
| Tier | Model | Output |
|---|---|---|
| Free / Starter | Gemini 2.5 Flash | Quick stats + basic flagging |
| Growth | Claude Sonnet 4.6 | Balanced analysis, breakdowns |
| Business | Claude Opus 4.7 | Deep analysis + tax suggestions |
Not a developer? The web app at taxformatter.com is a full drag-and-drop experience with real-time job status, exchange auto-detection, transformation previews, and one-click downloads.
| Layer | Technology |
|---|---|
| Frontend | Next.js 16 · React 19 · TypeScript · Tailwind v4 |
| Auth | NextAuth (Google OAuth + email/password + 2FA) |
| Database | Neon (serverless PostgreSQL) |
| Storage | AWS S3 (presigned URLs) |
| Queue | AWS SQS + DLQ |
| Compute | AWS Lambda × 4 (scanner, processor, webhook, api) |
| Edge | AWS API Gateway + WAF + CloudFront |
| Payments | Stripe (consumer + developer tiers) |
| AWS SES / Nodemailer | |
| Monitoring | Sentry + CloudWatch |
| IaC | Terraform |
trw/
├── app/ # Next.js App Router (marketing, dashboard, /v1 admin)
│ ├── api/ # Internal API routes (NextAuth, uploads, jobs, dev keys)
│ ├── dashboard/ # Authenticated user area + /dashboard/developer
│ ├── docs/ # MDX-powered docs site
│ └── upload/ # Anonymous bank statement → CSV landing page
│
├── backend/ # Python processing layer (AWS Lambda)
│ ├── handlers/ # scanner · processor · webhook · api
│ ├── services/
│ │ ├── engine.py # CSV parsing (14 exchange parsers)
│ │ ├── format_converter.py # Koinly → TurboTax/CoinLedger/ZenLedger
│ │ ├── fingerprinting.py # Exchange auto-detection
│ │ ├── ai_insights.py # Tiered AI analysis
│ │ ├── api_auth.py # API key validation + rate limiting
│ │ └── bank_statement/ # PDF extraction pipeline
│ ├── configs/banks/*.yaml # YAML-driven bank configs
│ └── terraform/ # Infra as code
│
├── packages/
│ ├── mcp-server/ # @taxformatter/mcp-server (npm)
│ ├── sdk-node/ # @taxformatter/sdk (npm)
│ └── sdk-python/ # taxformatter (PyPI)
│
├── components/ # React components (marketing, dashboard, ui)
├── lib/ # Business logic (auth, api-keys, stripe, email)
├── db/ # PostgreSQL schema + migrations
└── docs/ # Setup guides
Full architectural reference: ARCHITECTURE.md
npm install
npm run dev
Open http://localhost:3000.
curl -X POST https://api.taxformatter.com/v1/parse \
-H "X-API-Key: tf_live_..." \
-F "file=@coinbase.csv"
{
"mcpServers": {
"taxformatter": {
"command": "npx",
"args": ["@taxformatter/mcp-server"],
"env": { "TAXFORMATTER_API_KEY": "tf_live_..." }
}
}
}
npm install @taxformatter/sdk
import { TaxFormatter } from "@taxformatter/sdk";
const tf = new TaxFormatter({ apiKey: process.env.TF_API_KEY! });
const result = await tf.parse({ file: fs.createReadStream("./coinbase.csv") });
npm test # Jest unit tests (160+ across API, MCP, keys, UI)
npm run test:e2e # Playwright end-to-end tests
npm run typecheck # TypeScript strict mode
npm run lint # ESLint
One plan, two ways to use it — drop a file in the dashboard or call our API. Same quota, same AI insights.
| Tier | Price | Quota | RPM | AI Insights | Highlights |
|---|---|---|---|---|---|
| Free | $0 | 25 files | 10 | Gemini 2.5 Flash | All 14 exchanges · No credit card |
| Starter | $29/mo | 100 files | 30 | Gemini 2.5 Flash | All 14 exchanges |
| Growth | $99/mo | 500 files | 60 | Claude Sonnet 4.6 | + Bank PDF parsing |
| Business | $249/mo | 2,000 files | 120 | Claude Opus 4.7 | + Custom integrations · SLA |
api_requests stores metadata only (hash, status, bytes, timing)tf_live_ for easy identificationFull disclosure at taxformatter.com/security.
Private — Quantum Transfer Group. All rights reserved.
TAXFORMATTER_API_KEY*secretYour TaxFormatter API key (starts with tf_live_). Get one free at taxformatter.com/dashboard/developer
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json