taxformatter-mcp-server
Enables parsing of Bank of America PDF statements into structured, tax-ready transactions.
Enables parsing of Binance CSV exports into normalized, tax-ready transactions.
Enables parsing of Cash App CSV exports into normalized, tax-ready transactions.
Enables parsing of Chase PDF statements into structured, tax-ready transactions.
Enables parsing of Coinbase CSV exports into normalized, tax-ready transactions.
Enables parsing of KuCoin CSV exports into normalized, tax-ready transactions.
Enables parsing of OKX CSV exports into normalized, tax-ready transactions.
Enables parsing of PayPal CSV exports into normalized, tax-ready transactions.
Enables parsing of Robinhood CSV exports into normalized, tax-ready transactions.
Enables parsing of Venmo CSV exports into normalized, tax-ready transactions.
Enables parsing of Wells Fargo PDF statements into structured, tax-ready transactions.
📊 TaxFormatter
Crypto CSVs and bank statement PDFs, parsed into tax-ready data.
REST API · MCP Server · Node SDK · Python SDK · Consumer Dashboard
🚀 What It Does
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 insightsRelated MCP server: document-to-json-mcp
✨ Features
🔌 Developer REST API
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 probeAuth:
X-API-Keyheader withtf_live_*keys (SHA-256 hashed at rest)Host:
https://api.taxformatter.com
🤖 MCP Server for AI Agents
Give Claude, Cursor, Windsurf, or any MCP-compatible agent the ability to parse crypto and bank data directly.
npx @taxformatter/mcp-serverTool | What it does |
| Auto-detects the exchange, returns normalized transactions |
| Extracts transactions from bank statement PDFs |
| Queries every supported source + output format |
📦 Official SDKs
Node.js →
@taxformatter/sdk— promise-based, fully typedPython →
taxformatter— idiomatic, type-hinted
🏦 14 Exchanges · 7+ Banks · 4 Tax Software Formats
Exchanges: 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
🧠 Tiered AI Insights
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 |
🖥️ Consumer Dashboard
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.
🏗️ Tech Stack
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 |
📁 Repo Layout
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 guidesFull architectural reference: ARCHITECTURE.md
⚡ Quick Start
Run the web app
npm install
npm run devOpen http://localhost:3000.
Try the API
curl -X POST https://api.taxformatter.com/v1/parse \
-H "X-API-Key: tf_live_..." \
-F "file=@coinbase.csv"Use the MCP server with Claude Code
{
"mcpServers": {
"taxformatter": {
"command": "npx",
"args": ["@taxformatter/mcp-server"],
"env": { "TAXFORMATTER_API_KEY": "tf_live_..." }
}
}
}Install the Node SDK
npm install @taxformatter/sdkimport { TaxFormatter } from "@taxformatter/sdk";
const tf = new TaxFormatter({ apiKey: process.env.TF_API_KEY! });
const result = await tf.parse({ file: fs.createReadStream("./coinbase.csv") });🧪 Testing
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💳 Pricing
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 |
🔒 Security Highlights
Stateless API processing — file content lives in Lambda RAM only, never written to disk
Zero payload logging —
api_requestsstores metadata only (hash, status, bytes, timing)API keys SHA-256 hashed at rest, prefixed
tf_live_for easy identificationTLS 1.3 enforced everywhere
AES-256 encryption on all stored uploads
AWS WAF — DDoS shield, SQL injection, XSS mitigation
User-controlled retention — 1 year default, or delete-after-download
Full disclosure at taxformatter.com/security.
📚 Documentation
ARCHITECTURE.md — Full system design
content/docs/api/index.md — API reference
packages/mcp-server/README.md — MCP setup guide
RELIABILITY.md — SLOs, incident playbooks
docs/ — Stripe, Sentry, and deployment guides
License
Private — Quantum Transfer Group. All rights reserved.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to extract structured JSON from invoices and receipts in PDF and image formats using Claude Vision. Supports full document parsing, line item extraction, validation, and batch CSV export with API key or cryptocurrency payment options.Last updatedMIT
- AlicenseAqualityBmaintenanceConvert PDFs to structured JSON. Extract invoices, bank statements, contracts, and more. Pay per call via x402 USDC.Last updated58MIT
- Alicense-qualityBmaintenanceCost basis tracking, capital gains calculation, and 1099-DA reconciliation for Claude, built on top of the Crypto Portfolio MCP data layer.Last updatedMIT
- Flicense-qualityDmaintenanceClassifies Solana on-chain transactions into tax categories (e.g., swap, stake, NFT) and exports CSV reports compatible with TurboTax and CoinTracker.Last updated
Related MCP Connectors
Turn any PDF into structured JSON via AI + OCR: invoices, bank statements, contracts.
Tag, rename, and enrich PDFs and images. Free tier: 1,500 tags/month, no credit card.
TaxSort — Tollbooth-monetized MCP server for personal tax transaction classification
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Sean-Bravo/trw'
If you have feedback or need assistance with the MCP directory API, please join our Discord server