Back to Browse

Ledger MCP Server

FinanceLow Risk9.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Exact-decimal double-entry for agents. Call MCP tools; do not do money math in tokens.

About

Exact-decimal double-entry for agents. Call MCP tools; do not do money math in tokens.

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (2 strong, 0 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

8 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-eternal-roman-ledger": {
      "args": [
        "-y",
        "@eternal-roman/ledger-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Ledger

Money.from · validateEntry · Ledger.apply. Invalid entries are rejected, never posted.

For agents

Do not add, split, convert, or balance amounts yourself. Call the kernel.

npx -y @eternal-roman/ledger-mcp
{
  "mcpServers": {
    "ledger": { "command": "npx", "args": ["-y", "@eternal-roman/ledger-mcp"] }
  }
}

Then:

  1. Read ledger://canon/rules and ledger://canon/workflow.
  2. Compute with money_compute. Validate with entry_validate. Post with ledger_post.
  3. Prove with ledger_verify_equation + ledger_audit_hash. Never invent an audit hash.
  4. Ground treatments with cite_lookup. Bundle proof with artifact_make.

Rules live in AGENTS.md. Protocol: docs/CORE-PROTOCOL.md. Machine index: llms.txt. Full tool list: mcp/.

Host plugins (Grok and compatible) load /ledger-verify, /ledger-audit, /ledger-cite, /ledger-reconcile, /ledger-sim, /ledger-review from this repo. Copy AGENTS.md or skills/ledger/SKILL.md if the host has no plugin loader.

Why this exists

Token-level arithmetic is indifferent to scale, balance, and currency. The kernel is not.

FailureKernel
Float drift / sub-scaleMoney.from rejects
Unbalanced entryvalidateEntry + Ledger.apply reject
Silent currency mixPer-currency; FX must be explicit
Tamper / non-reproSHA-256 auditHash (ledger-audit-v2) + determinism harness
Ungrounded treatmentStarter IFRS/GAAP graph via cite_lookup
Exact moneyDouble-entryImmutable + audit hashDeterministicNo DBAgent / MCP
Ledgeryeskernelyesyesyesyes
dinero.jsyesyes
medicipartialyesMongoDB
Formance / TigerBeetleyesyesyespartialservice

Install (library)

npm install @eternal-roman/ledger
import { Money, Account, AccountType, createBalancedEntry, emptyLedger, validateEntry } from '@eternal-roman/ledger';

const cash = new Account('1000', 'Cash', AccountType.Asset);
const equity = new Account('3000', 'Owner Equity', AccountType.Equity);

const contribution = createBalancedEntry(
  'cap-001', '2026-06-21', cash, equity,
  Money.from('10000', 'USD'), 'Initial capital'
);

if (!validateEntry(contribution).ok) throw new Error('Invariant violation');

const ledger = emptyLedger().apply(contribution).ledger;
ledger.balance(cash).toString(); // "10000.00 USD"

ESM and CommonJS. Kernel-only import: @eternal-roman/ledger/core.

Mechanical check (no LLM):

npx ledger-verify --scan .
npx ledger-verify --prove entries.json

Layers on the kernel

All of these emit validated JournalEntrys. None reimplement money.

  • Trading / custodyfillToEntries, deposits, withdrawals, taker/maker fees
  • Portfolio — FIFO/LIFO/HIFO lots, realized/unrealized P&L, valuePortfolio
  • Investing — time- and money-weighted returns, allocation, planRebalance
  • Crypto transfers — one-shot or two-phase in-transit + network fees
  • IFRS 16 lessee — PV liability, ROU, full schedule, golden-master to the cent
  • Close / FX / depreciation / cash flow / reconcile — period locks, CTA, schedules, direct-method cash flow

Asset scales (BTC=8, ETH=18, …) are installed with installAssetScales(defaultAssetRegistry()). Fiat is unchanged. See examples/.

Verify

npm test
npm run verify        # determinism harness
npm run verify:full   # build + typecheck + tests + versions + MCP smoke
npm run eval          # unguarded vs kernel benchmark

Docs

DocFor
AGENTS.mdAgent contract
llms.txtMachine-readable map
docs/CORE-PROTOCOL.mdZero-Skip protocol
docs/SUCCESS-CHECKLIST.mdPre-ship checklist
docs/ANTI-PATTERNS.mdWhat the kernel rejects
docs/SCOPE-AND-LAYERS.mdWhat ships today
mcp/README.mdMCP tools, resources, prompts
CONTRIBUTING.mdDeveloping this repo

Python kernel port: reference-implementations/python/ (same invariants; install an asset-scale resolver for non-fiat).

License

MIT. See LICENSE.

Disclaimer

Deterministic primitives and verification tools. Not financial, tax, legal, or accounting advice. You are responsible for inputs, assumptions, rates, jurisdiction, and compliance. Tests and benchmarks are due diligence, not a certification. See LICENSE.

Reviews

No reviews yet

Be the first to review this server!

Ledger MCP Server - Exact-decimal double-entry for agents. Call MCP tools; do | MCP Marketplace