ledger_raw_command
Execute raw Ledger CLI commands to query and analyze financial data directly through the Model Context Protocol server, enabling tasks like financial reporting and budget analysis.
Instructions
Run a raw ledger command
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"LedgerRawCommand": {
"properties": {
"command": {
"description": "Raw ledger command arguments",
"items": {
"type": "string"
},
"title": "Command",
"type": "array"
}
},
"required": [
"command"
],
"title": "LedgerRawCommand",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/LedgerRawCommand"
}
},
"required": [
"params"
],
"title": "ledger_raw_commandArguments",
"type": "object"
}