
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@taxformatter/mcp-server
Advanced tools
MCP server for parsing crypto CSVs and bank statement PDFs via TaxFormatter API
MCP server for parsing crypto exchange CSVs and bank statement PDFs via the TaxFormatter API.
Get an API key at taxformatter.com/dashboard/developer
Add to your MCP config:
Claude Code (~/.claude/mcp.json):
{
"mcpServers": {
"taxformatter": {
"command": "npx",
"args": ["@taxformatter/mcp-server"],
"env": {
"TAXFORMATTER_API_KEY": "tf_live_your_key_here"
}
}
}
}
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"taxformatter": {
"command": "npx",
"args": ["@taxformatter/mcp-server"],
"env": {
"TAXFORMATTER_API_KEY": "tf_live_your_key_here"
}
}
}
}
| Env var | Description | Default |
|---|---|---|
TAXFORMATTER_API_KEY | Your API key (required) | — |
TAXFORMATTER_API_URL | API base URL | https://api.taxformatter.com |
parse_crypto_csvParse a crypto exchange CSV and convert to tax software format.
koinly | turbotax | coinledger | zenledgerparse_bank_statementParse a bank statement PDF and extract transactions.
list_supported_sourcesList all supported crypto exchanges and banks.
import { TaxFormatterClient, TaxFormatterError } from '@taxformatter/mcp-server';
const client = new TaxFormatterClient('tf_live_xxx', {
baseUrl: 'https://api.taxformatter.com', // optional
timeout: 30_000, // optional, ms
});
// Parse a file
const result = await client.parse(fileBuffer, 'coinbase_2025.csv', {
output_format: 'turbotax',
});
// List sources
const sources = await client.listSources();
// Get usage
const usage = await client.getUsage();
import { TaxFormatterError } from '@taxformatter/mcp-server';
try {
await client.parse(buffer, 'file.csv');
} catch (err) {
if (err instanceof TaxFormatterError) {
console.error(err.code); // e.g. "rate_limited"
console.error(err.statusCode); // e.g. 429
console.error(err.suggestion); // e.g. "Upgrade your tier..."
}
}
Crypto Exchanges: Coinbase, Binance, Kraken, Gemini, 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
MIT
FAQs
MCP server for parsing crypto CSVs and bank statement PDFs via TaxFormatter API
The npm package @taxformatter/mcp-server receives a total of 18 weekly downloads. As such, @taxformatter/mcp-server popularity was classified as not popular.
We found that @taxformatter/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.