-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.py
494 lines (464 loc) · 17.6 KB
/
server.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
import json
import sys
import anyio
from mcp.server import Server
from mcp.server.stdio import stdio_server
import mcp.types as types
from api import QuickBooksTimeAPI
from utils import setup_logging, log_info, log_error
JSONRPC_VERSION = "2.0"
PROTOCOL_VERSION = "2024-11-05"
SERVER_INFO = {
"name": "qb-time-tools",
"version": "1.0.0",
"vendor": "QuickBooks Time API Client",
"description": "Access QuickBooks Time data through these API tools.",
"tools": [
{
"name": "get_jobcodes",
"description": "Get all jobcodes from QuickBooks Time. Returns jobcode details including name, type, and status.",
"inputSchema": {
"type": "object",
"properties": {
"ids": {"type": "array", "items": {"type": "number"}, "description": "Filter by specific jobcode IDs"},
"parent_ids": {"type": "array", "items": {"type": "number"}, "description": "Filter by parent jobcode IDs"},
"name": {"type": "string", "description": "Filter by name (use * as wildcard)"},
"type": {"type": "string", "enum": ["regular", "pto", "paid_break", "unpaid_break", "all"]},
"active": {"type": "string", "enum": ["yes", "no", "both"]},
"customfields": {"type": "boolean"},
"modified_before": {"type": "string"},
"modified_since": {"type": "string"},
"supplemental_data": {"type": "string", "enum": ["yes", "no"]},
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_jobcode",
"description": "Get details for a specific jobcode by ID.",
"inputSchema": {
"type": "object",
"properties": {
"id": {"type": "number", "description": "The ID of the jobcode to retrieve"}
},
"required": ["id"]
}
},
{
"name": "search_jobcodes",
"description": "Search jobcodes with advanced filtering options.",
"inputSchema": {
"type": "object",
"properties": {
"name": {"type": "string", "description": "Search by name (use * as wildcard)"},
"type": {"type": "string", "enum": ["regular", "pto", "paid_break", "unpaid_break", "all"]},
"active": {"type": "string", "enum": ["yes", "no", "both"]},
"modified_since": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_jobcode_hierarchy",
"description": "Get complete jobcode hierarchy starting from top-level jobcodes.",
"inputSchema": {
"type": "object",
"properties": {
"name": {"type": "string", "description": "Filter by name (use * as wildcard)"},
"type": {"type": "string", "enum": ["regular", "pto", "paid_break", "unpaid_break", "all"]},
"active": {"type": "string", "enum": ["yes", "no", "both"]},
"customfields": {"type": "boolean"},
"supplemental_data": {"type": "string", "enum": ["yes", "no"]}
}
}
},
{
"name": "get_timesheets",
"description": "Get timesheets from QuickBooks Time.",
"inputSchema": {
"type": "object",
"properties": {
"modified_before": {"type": "string"},
"modified_since": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_timesheet",
"description": "Get a specific timesheet by ID.",
"inputSchema": {
"type": "object",
"properties": {
"id": {"type": "number", "description": "The ID of the timesheet to retrieve"}
},
"required": ["id"]
}
},
{
"name": "get_current_timesheets",
"description": "Get currently active timesheets.",
"inputSchema": {
"type": "object",
"properties": {}
}
},
{
"name": "get_users",
"description": "Get users from QuickBooks Time.",
"inputSchema": {
"type": "object",
"properties": {
"modified_before": {"type": "string"},
"modified_since": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_user",
"description": "Get a specific user by ID.",
"inputSchema": {
"type": "object",
"properties": {
"id": {"type": "number", "description": "The ID of the user to retrieve"}
},
"required": ["id"]
}
},
{
"name": "get_current_user",
"description": "Get details about the currently authenticated user.",
"inputSchema": {
"type": "object",
"properties": {}
}
},
{
"name": "get_groups",
"description": "Get groups from QuickBooks Time.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_custom_fields",
"description": "Get custom tracking fields configured on timecards.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_projects",
"description": "Get projects from QuickBooks Time.",
"inputSchema": {
"type": "object",
"properties": {
"modified_before": {"type": "string"},
"modified_since": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_project_activities",
"description": "Get project activities.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_last_modified",
"description": "Get last modified timestamps for objects.",
"inputSchema": {
"type": "object",
"properties": {
"types": {"type": "array", "items": {"type": "string"}}
}
}
},
{
"name": "get_notifications",
"description": "Get notifications.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_managed_clients",
"description": "Get managed clients.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_current_totals",
"description": "Get current totals snapshot including shift and day totals.",
"inputSchema": {
"type": "object",
"properties": {
"page": {"type": "number"},
"limit": {"type": "number"}
}
}
},
{
"name": "get_payroll",
"description": "Get payroll report.",
"inputSchema": {
"type": "object",
"properties": {
"start_date": {"type": "string"},
"end_date": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
},
"required": ["start_date", "end_date"]
}
},
{
"name": "get_payroll_by_jobcode",
"description": "Get payroll report grouped by jobcode.",
"inputSchema": {
"type": "object",
"properties": {
"start_date": {"type": "string"},
"end_date": {"type": "string"},
"page": {"type": "number"},
"limit": {"type": "number"}
},
"required": ["start_date", "end_date"]
}
},
{
"name": "get_project_report",
"description": "Get detailed project report with time entries.",
"inputSchema": {
"type": "object",
"required": ["start_date", "end_date", "jobcode_ids"],
"properties": {
"start_date": {
"type": "string",
"description": "Start date in YYYY-MM-DD format"
},
"end_date": {
"type": "string",
"description": "End date in YYYY-MM-DD format"
},
"user_ids": {
"type": "array",
"items": {"type": "number"},
"description": "Filter by specific user IDs"
},
"group_ids": {
"type": "array",
"items": {"type": "number"},
"description": "Filter by specific group IDs"
},
"jobcode_ids": {
"type": "array",
"items": {"type": "number"},
"description": "Filter by specific jobcode IDs (required)"
},
"jobcode_type": {
"type": "string",
"enum": ["regular", "pto", "unpaid_break", "paid_break", "all"],
"description": "Filter by jobcode type"
},
"customfielditems": {
"type": "object",
"description": "Filter by custom field items"
}
}
}
}
]
}
class JSONRPCServer:
def __init__(self, access_token: str, node_env: str):
self.api = QuickBooksTimeAPI(access_token)
self.node_env = node_env
self.message_buffer = ''
self.message_counter = 0
setup_logging()
def get_next_id(self) -> str:
self.message_counter += 1
return str(self.message_counter)
def send_response(self, response: dict):
response_str = json.dumps(response)
sys.stdout.write(response_str + '\n')
sys.stdout.flush()
def send_error_response(self, id: str, code: int, message: str, data=None):
self.send_response({
'jsonrpc': JSONRPC_VERSION,
'id': id,
'error': {
'code': code,
'message': message,
'data': data
}
})
def handle_initialize(self, message: dict):
if 'id' not in message:
self.send_error_response(self.get_next_id(), -32600, 'Initialize must include an id')
return
self.send_response({
'jsonrpc': JSONRPC_VERSION,
'id': message['id'],
'result': {
'protocolVersion': PROTOCOL_VERSION,
'capabilities': {
'tools': {
'listChanged': True
}
},
'serverInfo': SERVER_INFO
}
})
def handle_tools_list(self, message: dict):
if 'id' not in message:
self.send_error_response(self.get_next_id(), -32600, 'Tools list request must include an id')
return
self.send_response({
'jsonrpc': JSONRPC_VERSION,
'id': message['id'],
'result': {
'tools': SERVER_INFO['tools']
}
})
def handle_tools_call(self, message: dict):
if 'id' not in message:
self.send_error_response(self.get_next_id(), -32600, 'Tools call must include an id')
return
params = message.get('params', {})
name = params.get('name')
args = params.get('arguments', {})
if not name or not isinstance(args, dict):
self.send_error_response(message['id'], -32602, 'Invalid params: must include name and arguments')
return
method_map = {
'get_jobcodes': self.api.get_jobcodes,
'get_jobcode': self.api.get_jobcode,
'search_jobcodes': self.api.search_jobcodes,
'get_jobcode_hierarchy': self.api.get_jobcode_hierarchy,
'get_timesheets': self.api.get_timesheets,
'get_timesheet': self.api.get_timesheet,
'get_current_timesheets': self.api.get_current_timesheets,
'get_users': self.api.get_users,
'get_user': self.api.get_user,
'get_current_user': self.api.get_current_user,
'get_groups': self.api.get_groups,
'get_custom_fields': self.api.get_custom_fields,
'get_projects': self.api.get_projects,
'get_project_activities': self.api.get_project_activities,
'get_last_modified': self.api.get_last_modified,
'get_notifications': self.api.get_notifications,
'get_managed_clients': self.api.get_managed_clients,
'get_current_totals': self.api.get_current_totals,
'get_payroll': self.api.get_payroll,
'get_payroll_by_jobcode': self.api.get_payroll_by_jobcode,
'get_project_report': self.api.get_project_report
}
if name not in method_map:
self.send_error_response(message['id'], -32601, f'Unknown method: {name}')
return
try:
result = method_map[name](args)
self.send_response({
'jsonrpc': JSONRPC_VERSION,
'id': message['id'],
'result': {
'content': [{
'type': 'text',
'text': json.dumps(result)
}]
}
})
except Exception as e:
log_error(f'Error in {name}: {str(e)}')
self.send_error_response(message['id'], -32000, str(e))
def handle_message(self, message_str: str):
message_id = self.get_next_id()
try:
message = json.loads(message_str)
if 'method' not in message:
self.send_error_response(
message.get('id', message_id),
-32600,
'Invalid Request'
)
return
if message['method'] == 'initialize':
self.handle_initialize(message)
elif message['method'] == 'tools/list':
self.handle_tools_list(message)
elif message['method'] == 'tools/call':
self.handle_tools_call(message)
else:
if 'id' in message:
self.send_error_response(message['id'], -32601, 'Method not found')
else:
log_info(f'Received notification for method: {message["method"]}')
except json.JSONDecodeError:
self.send_error_response(message_id, -32700, 'Parse error')
def send_server_info(self):
self.send_response({
'jsonrpc': JSONRPC_VERSION,
'method': 'server/info',
'params': {
'serverInfo': SERVER_INFO
}
})
def start(self):
log_info('QuickBooks Time MCP Server Starting')
log_info(f'Environment: {{"tokenConfigured": {bool(self.api.access_token)}, "nodeEnv": "{self.node_env}"}}')
# Send initial server info
self.send_server_info()
# Start reading from stdin
while True:
try:
line = sys.stdin.readline()
if not line:
break
self.handle_message(line.strip())
except KeyboardInterrupt:
log_info('Server shutting down.')
break
def run_server(access_token: str, node_env: str = 'development'):
server = JSONRPCServer(access_token, node_env)
server.start()
if __name__ == "__main__":
import os
from dotenv import load_dotenv
load_dotenv()
access_token = os.getenv('QB_TIME_ACCESS_TOKEN')
node_env = os.getenv('NODE_ENV', 'development')
if not access_token:
print("QB_TIME_ACCESS_TOKEN environment variable is required")
sys.exit(1)
run_server(access_token, node_env)