Documentation

Getting started

Install Clovis, create a local ledger, import the first statement, and run the first finance checks.

npm

First 10 minutes

Install the package, create a ledger, and run one command that proves Clovis can read it.

1

Install Clovis

Installs both the `clovis` CLI and `clovis-mcp` server.

npm install -g clovis
2

Create a local ledger

Creates the database and starter accounts.

clovis init --currency USD
3

Check the ledger

Confirms Clovis can read the ledger.

clovis account balances --format json
4

Open command help

Shows the top-level command tree and global options.

clovis --help

What 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 agent

I want to import bank data

Use pending imports first so every row can be reviewed before it becomes part of the books.

Import statements

I want exact command help

Open the generated CLI reference. It is rebuilt from the published package help output.

Browse CLI reference