-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker.log
More file actions
1884 lines (1884 loc) · 113 KB
/
Copy pathdocker.log
File metadata and controls
1884 lines (1884 loc) · 113 KB
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2026-01-09 21:46:13,949 CRIT Supervisor is running as root. Privileges were not dropped because no user is specified in the config file. If you intend to run as root, you can set user=root in the config file to avoid this message.
2026-01-09 21:46:13,951 INFO supervisord started with pid 1
2026-01-09 21:46:14,954 INFO spawned: 'engine' with pid 7
2026-01-09 21:46:14,955 INFO spawned: 'mcp-server' with pid 8
2026-01-09 21:46:15,957 INFO success: engine entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
Building workspace-secretary @ file:///app
2026-01-09 21:46:18,804 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
Built workspace-secretary @ file:///app
Uninstalled 1 package in 29ms
Installed 1 package in 1ms
INFO: Started server process [52]
INFO: Waiting for application startup.
2026-01-09 21:46:24,170 - workspace_secretary.engine.api - INFO - Starting secretary-engine...
2026-01-09 21:46:24,175 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
2026-01-09 21:46:24,176 - workspace_secretary.engine.api - WARNING - Enrollment attempt failed: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:24,176 - workspace_secretary.engine.api - INFO - OAuth not configured - waiting for enrollment...
2026-01-09 21:46:24,176 - workspace_secretary.engine.api - INFO - Run 'auth_setup' to complete OAuth enrollment
2026-01-09 21:46:24,176 - workspace_secretary.engine.api - INFO - Starting enrollment watch loop...
2026-01-09 21:46:24,176 - workspace_secretary.engine.api - INFO - Detected config.yaml change
2026-01-09 21:46:24,182 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
2026-01-09 21:46:24,183 - workspace_secretary.engine.api - WARNING - Enrollment attempt failed: Gmail requires either an app-specific password or OAuth2 credentials
INFO: Application startup complete.
INFO: Uvicorn running on unix socket /tmp/secretary-engine.sock (Press CTRL+C to quit)
2026-01-09 21:46:24,301 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:24,305 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:24,461 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:25,463 INFO spawned: 'mcp-server' with pid 54
2026-01-09 21:46:28,278 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:28,282 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:28,437 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:29,439 INFO spawned: 'mcp-server' with pid 58
2026-01-09 21:46:32,443 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:32,813 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:32,817 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:32,971 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:33,974 INFO spawned: 'mcp-server' with pid 62
2026-01-09 21:46:36,978 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:37,378 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:37,383 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:37,548 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:38,551 INFO spawned: 'mcp-server' with pid 66
2026-01-09 21:46:41,528 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:41,532 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:41,685 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:41,685 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:42,689 INFO spawned: 'mcp-server' with pid 70
2026-01-09 21:46:45,693 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:45,995 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:46,000 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:46,154 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:47,158 INFO spawned: 'mcp-server' with pid 74
2026-01-09 21:46:50,162 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:50,573 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:50,578 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:50,756 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:51,759 INFO spawned: 'mcp-server' with pid 78
2026-01-09 21:46:54,763 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:46:55,172 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:46:55,177 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:46:55,361 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:46:56,364 INFO spawned: 'mcp-server' with pid 82
2026-01-09 21:46:59,367 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:03,213 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:03,221 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:03,467 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:04,471 INFO spawned: 'mcp-server' with pid 86
2026-01-09 21:47:07,475 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:08,739 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:08,744 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:08,941 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:09,944 INFO spawned: 'mcp-server' with pid 90
2026-01-09 21:47:12,948 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:13,969 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:13,977 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:14,217 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:15,221 INFO spawned: 'mcp-server' with pid 94
2026-01-09 21:47:18,225 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:19,622 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:19,629 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:19,838 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:20,841 INFO spawned: 'mcp-server' with pid 98
2026-01-09 21:47:23,845 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:25,503 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:25,510 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:25,718 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:26,723 INFO spawned: 'mcp-server' with pid 102
2026-01-09 21:47:29,726 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:32,151 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:32,158 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:32,373 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:33,377 INFO spawned: 'mcp-server' with pid 106
2026-01-09 21:47:36,380 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:39,022 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:39,030 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:39,257 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:40,260 INFO spawned: 'mcp-server' with pid 110
2026-01-09 21:47:43,264 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:44,485 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:44,491 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:44,695 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:45,699 INFO spawned: 'mcp-server' with pid 114
2026-01-09 21:47:48,703 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:50,918 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:50,927 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:51,176 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:52,180 INFO spawned: 'mcp-server' with pid 118
2026-01-09 21:47:55,183 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:47:57,254 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:47:57,260 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:47:57,450 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:47:58,455 INFO spawned: 'mcp-server' with pid 122
2026-01-09 21:48:01,458 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:03,998 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:04,006 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:04,253 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:05,257 INFO spawned: 'mcp-server' with pid 126
2026-01-09 21:48:08,260 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:09,659 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:09,666 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:09,856 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:10,860 INFO spawned: 'mcp-server' with pid 130
2026-01-09 21:48:13,863 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:16,456 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:16,463 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:16,719 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:17,723 INFO spawned: 'mcp-server' with pid 134
2026-01-09 21:48:20,726 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:21,683 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:21,690 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:21,942 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:22,945 INFO spawned: 'mcp-server' with pid 138
2026-01-09 21:48:25,950 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:28,286 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:28,303 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:28,602 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:29,606 INFO spawned: 'mcp-server' with pid 142
2026-01-09 21:48:32,609 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:34,609 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:34,619 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:34,886 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:35,890 INFO spawned: 'mcp-server' with pid 147
2026-01-09 21:48:38,894 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:41,448 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:41,455 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:41,702 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:42,705 INFO spawned: 'mcp-server' with pid 151
2026-01-09 21:48:45,709 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:46,756 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:46,764 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:47,021 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:48,025 INFO spawned: 'mcp-server' with pid 155
2026-01-09 21:48:51,029 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:53,147 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:53,158 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:53,354 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:54,357 INFO spawned: 'mcp-server' with pid 159
2026-01-09 21:48:57,360 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:48:58,524 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:48:58,532 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:48:58,775 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:48:59,779 INFO spawned: 'mcp-server' with pid 163
2026-01-09 21:49:02,783 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:04,155 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:04,162 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:04,369 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:05,373 INFO spawned: 'mcp-server' with pid 167
2026-01-09 21:49:08,377 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:11,026 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:11,033 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:11,251 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:12,254 INFO spawned: 'mcp-server' with pid 171
2026-01-09 21:49:15,258 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:16,599 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:16,604 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:16,814 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:17,817 INFO spawned: 'mcp-server' with pid 175
2026-01-09 21:49:20,821 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:23,021 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:23,031 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:23,282 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:24,285 INFO spawned: 'mcp-server' with pid 179
2026-01-09 21:49:27,289 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:29,717 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:29,725 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:29,952 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:30,955 INFO spawned: 'mcp-server' with pid 183
2026-01-09 21:49:33,959 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:36,658 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:36,667 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:36,908 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:37,912 INFO spawned: 'mcp-server' with pid 187
2026-01-09 21:49:40,915 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:43,148 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:43,157 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:43,408 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:44,412 INFO spawned: 'mcp-server' with pid 191
2026-01-09 21:49:47,416 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:48,914 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:48,921 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>
main()
File "/app/workspace_secretary/server.py", line 487, in main
server = create_server(config_path=args.config, debug=args.debug)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/server.py", line 104, in create_server
_state.initialize(config_path)
File "/app/workspace_secretary/server.py", line 35, in initialize
self.config = load_config(config_path)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 538, in load_config
return ServerConfig.from_dict(config_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 445, in from_dict
imap=ImapConfig.from_dict(data.get("imap", {})),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/workspace_secretary/config.py", line 93, in from_dict
raise ValueError(
ValueError: Gmail requires either an app-specific password or OAuth2 credentials
2026-01-09 21:49:49,136 WARN exited: mcp-server (exit status 1; not expected)
2026-01-09 21:49:50,139 INFO spawned: 'mcp-server' with pid 195
2026-01-09 21:49:53,144 INFO success: mcp-server entered RUNNING state, process has stayed up for > than 3 seconds (startsecs)
2026-01-09 21:49:55,934 - workspace_secretary - INFO - Initializing MCP server...
2026-01-09 21:49:55,942 - workspace_secretary.config - INFO - Loaded configuration from /app/config/config.yaml
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/app/workspace_secretary/server.py", line 504, in <module>