-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
272 lines (210 loc) · 7.99 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import os
import subprocess
from typing import List, Optional
from pydantic import BaseModel, Field
from mcp.server.fastmcp import FastMCP
# Environment variable for ledger file path with default
# First check command-line argument, then environment variable
LEDGER_FILE = os.getenv("LEDGER_FILE")
# Initialize MCP server
mcp = FastMCP("Ledger CLI")
# Pydantic models for ledger commands
class LedgerBalance(BaseModel):
query: Optional[str] = Field(None, description="Filter accounts by regex pattern")
begin_date: Optional[str] = Field(
None, description="Start date for transactions (YYYY/MM/DD)"
)
end_date: Optional[str] = Field(
None, description="End date for transactions (YYYY/MM/DD)"
)
depth: Optional[int] = Field(None, description="Limit account depth displayed")
monthly: bool = Field(False, description="Group by month")
weekly: bool = Field(False, description="Group by week")
daily: bool = Field(False, description="Group by day")
yearly: bool = Field(False, description="Group by year")
flat: bool = Field(False, description="Show full account names without indentation")
no_total: bool = Field(False, description="Don't show the final total")
class LedgerRegister(BaseModel):
query: Optional[str] = Field(
None, description="Filter transactions by regex pattern"
)
begin_date: Optional[str] = Field(
None, description="Start date for transactions (YYYY/MM/DD)"
)
end_date: Optional[str] = Field(
None, description="End date for transactions (YYYY/MM/DD)"
)
monthly: bool = Field(False, description="Group by month")
weekly: bool = Field(False, description="Group by week")
daily: bool = Field(False, description="Group by day")
yearly: bool = Field(False, description="Group by year")
sort: Optional[str] = Field(
None, description="Sort transactions (date, amount, payee)"
)
by_payee: bool = Field(False, description="Group by payee")
current: bool = Field(
False, description="Show only transactions on or before today"
)
class LedgerAccounts(BaseModel):
query: Optional[str] = Field(None, description="Filter accounts by regex pattern")
class LedgerPayees(BaseModel):
query: Optional[str] = Field(None, description="Filter payees by regex pattern")
class LedgerCommodities(BaseModel):
query: Optional[str] = Field(
None, description="Filter commodities by regex pattern"
)
class LedgerPrint(BaseModel):
query: Optional[str] = Field(
None, description="Filter transactions by regex pattern"
)
begin_date: Optional[str] = Field(
None, description="Start date for transactions (YYYY/MM/DD)"
)
end_date: Optional[str] = Field(
None, description="End date for transactions (YYYY/MM/DD)"
)
class LedgerStats(BaseModel):
query: Optional[str] = Field(None, description="Filter for statistics")
class LedgerBudget(BaseModel):
query: Optional[str] = Field(None, description="Filter accounts by regex pattern")
begin_date: Optional[str] = Field(
None, description="Start date for transactions (YYYY/MM/DD)"
)
end_date: Optional[str] = Field(
None, description="End date for transactions (YYYY/MM/DD)"
)
monthly: bool = Field(False, description="Group by month")
weekly: bool = Field(False, description="Group by week")
daily: bool = Field(False, description="Group by day")
yearly: bool = Field(False, description="Group by year")
class LedgerRawCommand(BaseModel):
command: List[str] = Field(..., description="Raw ledger command arguments")
# Helper function to run ledger commands
def run_ledger(args: List[str]) -> str:
try:
if not LEDGER_FILE:
return "Ledger file path not set. Please provide it via --ledger-file argument or LEDGER_FILE environment variable."
# Validate inputs to prevent command injection
for arg in args:
if ";" in arg or "&" in arg or "|" in arg:
return "Error: Invalid characters in command arguments."
result = subprocess.run(
["ledger", "-f", LEDGER_FILE] + args,
check=True,
text=True,
capture_output=True,
)
return result.stdout
except subprocess.CalledProcessError as e:
error_message = f"Ledger command failed: {e.stderr}"
if "couldn't find file" in e.stderr:
error_message = f"Ledger file not found at {LEDGER_FILE}. Please provide a valid path via --ledger-file argument or LEDGER_FILE environment variable."
return error_message
# Define MCP tools
@mcp.tool(description="Show account balances")
def ledger_balance(params: LedgerBalance) -> str:
cmd = ["balance"]
if params.query:
cmd.append(params.query)
if params.begin_date:
cmd.extend(["-b", params.begin_date])
if params.end_date:
cmd.extend(["-e", params.end_date])
if params.depth is not None:
cmd.extend(["--depth", str(params.depth)])
if params.monthly:
cmd.append("--monthly")
if params.weekly:
cmd.append("--weekly")
if params.daily:
cmd.append("--daily")
if params.yearly:
cmd.append("--yearly")
if params.flat:
cmd.append("--flat")
if params.no_total:
cmd.append("--no-total")
return run_ledger(cmd)
@mcp.tool(description="Show transaction register")
def ledger_register(params: LedgerRegister) -> str:
cmd = ["register"]
if params.query:
cmd.append(params.query)
if params.begin_date:
cmd.extend(["-b", params.begin_date])
if params.end_date:
cmd.extend(["-e", params.end_date])
if params.monthly:
cmd.append("--monthly")
if params.weekly:
cmd.append("--weekly")
if params.daily:
cmd.append("--daily")
if params.yearly:
cmd.append("--yearly")
if params.sort:
cmd.extend(["-S", params.sort])
if params.by_payee:
cmd.append("-P")
if params.current:
cmd.append("-c")
return run_ledger(cmd)
@mcp.tool(description="List all accounts")
def ledger_accounts(params: LedgerAccounts) -> str:
cmd = ["accounts"]
if params.query:
cmd.append(params.query)
return run_ledger(cmd)
@mcp.tool(description="List all payees")
def ledger_payees(params: LedgerPayees) -> str:
cmd = ["payees"]
if params.query:
cmd.append(params.query)
return run_ledger(cmd)
@mcp.tool(description="List all commodities")
def ledger_commodities(params: LedgerCommodities) -> str:
cmd = ["commodities"]
if params.query:
cmd.append(params.query)
return run_ledger(cmd)
@mcp.tool(description="Print transactions in ledger format")
def ledger_print(params: LedgerPrint) -> str:
cmd = ["print"]
if params.query:
cmd.append(params.query)
if params.begin_date:
cmd.extend(["-b", params.begin_date])
if params.end_date:
cmd.extend(["-e", params.end_date])
return run_ledger(cmd)
@mcp.tool(description="Show statistics about the ledger file")
def ledger_stats(params: LedgerStats) -> str:
cmd = ["stats"]
if params.query:
cmd.append(params.query)
return run_ledger(cmd)
@mcp.tool(description="Show budget report")
def ledger_budget(params: LedgerBudget) -> str:
cmd = ["budget"]
if params.query:
cmd.append(params.query)
if params.begin_date:
cmd.extend(["-b", params.begin_date])
if params.end_date:
cmd.extend(["-e", params.end_date])
if params.monthly:
cmd.append("--monthly")
if params.weekly:
cmd.append("--weekly")
if params.daily:
cmd.append("--daily")
if params.yearly:
cmd.append("--yearly")
return run_ledger(cmd)
@mcp.tool(description="Run a raw ledger command")
def ledger_raw_command(params: LedgerRawCommand) -> str:
return run_ledger(params.command)
@mcp.resource("ledger://file")
def get_ledger_file() -> str:
"""Return the path to the current ledger file."""
return LEDGER_FILE or ""