
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
ledger-mcp
Advanced tools
MCP server for Ledger — a double-entry bookkeeping API that natively accepts crypto micropayments. Zero signup: pays per call via x402 (~$0.002/read, ~$0.01/write, USDC on Base). Balanced journal entries, trial balance, general ledger.
Ledger is a double-entry bookkeeping API that natively accepts crypto micropayments — and this is its MCP server. Create a chart of accounts, post balanced journal entries, and pull trial-balance / general-ledger reports from inside your agent, over the Ledger API.
What makes it agent-native:
uvx ledger-mcp
Or add it to your MCP client (claude-code-config.json / Claude Desktop):
{
"mcpServers": {
"ledger": {
"command": "uvx",
"args": ["ledger-mcp"],
"env": {
"LEDGER_X402_PRIVATE_KEY": "0xYOUR_FUNDED_BASE_WALLET_KEY"
}
}
}
}
Most tools are paid per call (reads ~$0.002, writes ~$0.01, in USDC on Base):
LEDGER_X402_PRIVATE_KEY to the private key of a funded Base wallet
(holding USDC). The server signs the x402 (EIP-3009) payment automatically on
each call — gasless, you only spend the USDC the call costs.health and discover still work, and paid tools return the
exact price plus how to enable payment (nothing is spent).Run discover to see every endpoint and its current price before spending.
| Tool | Cost | What it does |
|---|---|---|
health | free | API status + version |
discover | free | List paid endpoints + x402 prices |
create_account | write | Add an account (asset/liability/equity/revenue/expense) |
list_accounts | read | Chart of accounts + balances |
get_account | read | One account's balance (optionally as-of a date) |
post_transaction | write | Record a balanced journal entry |
list_transactions | read | Journal, newest first |
get_transaction | read | One transaction with all entries |
reverse_transaction | write | Post a reversing entry |
trial_balance | read | All balances + debit/credit totals |
general_ledger | read | Per-account detail over a date range |
Every transaction is two or more entries whose signed amounts sum to exactly 0. Amounts are integers in minor units (cents): a debit is positive, a credit is negative.
Record a $500 cash sale (debit Cash, credit Sales Revenue):
{
"date": "2026-06-19",
"description": "Cash sale",
"entries": [
{"account_id": 1, "amount": 50000, "memo": "cash in"},
{"account_id": 2, "amount": -50000, "memo": "sales revenue"}
]
}
The server rejects an unbalanced transaction before spending.
https://ledger-api.novadyne.aihttps://ledger-api.novadyne.ai/.well-known/x402MIT licensed. By Novadyne. The API backend is operated by Novadyne; this package is the open client that talks to it.
FAQs
MCP server for Ledger — a double-entry bookkeeping API that natively accepts crypto micropayments. Zero signup: pays per call via x402 (~$0.002/read, ~$0.01/write, USDC on Base). Balanced journal entries, trial balance, general ledger.
The pypi package ledger-mcp receives a total of 41 weekly downloads. As such, ledger-mcp popularity was classified as not popular.
We found that ledger-mcp 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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.