ledger_stats
Generate and display detailed statistics from a ledger file, enabling financial analysis through customizable query filters with the Ledger CLI MCP Server.
Instructions
Show statistics about the ledger file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"LedgerStats": {
"properties": {
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter for statistics",
"title": "Query"
}
},
"title": "LedgerStats",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/LedgerStats"
}
},
"required": [
"params"
],
"title": "ledger_statsArguments",
"type": "object"
}