Documentation
Getting started
Install Clovis, create a local ledger, import the first statement, and run the first finance checks.
First 10 minutes
Install the package, create a ledger, and run one command that proves Clovis can read it.
Install Clovis
Installs both the `clovis` CLI and `clovis-mcp` server.
npm install -g clovisCreate a local ledger
Creates the database and starter accounts.
clovis init --currency USDCheck the ledger
Confirms Clovis can read the ledger.
clovis account balances --format jsonOpen command help
Shows the top-level command tree and global options.
clovis --helpWhat to do next
Use the path that matches how you want to work.
I want an AI agent to help
Connect the MCP server and start with read-only questions before allowing writes.
Set up an agentI want to import bank data
Use pending imports first so every row can be reviewed before it becomes part of the books.
Import statementsI want exact command help
Open the generated CLI reference. It is rebuilt from the published package help output.
Browse CLI reference