-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcatalog.json
More file actions
993 lines (993 loc) · 37.5 KB
/
Copy pathcatalog.json
File metadata and controls
993 lines (993 loc) · 37.5 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
{
"generated_at": "2026-05-04T22:44:55.668974+00:00",
"tool_count": 141,
"tools": [
{
"name": "file_write",
"module": "cognithor.mcp.filesystem",
"category": "filesystem",
"description": "Alias für write_file. Erstellt oder überschreibt eine Datei.",
"dach_specific": false
},
{
"name": "video_compose",
"module": "cognithor.mcp.video_tools",
"category": "filesystem",
"description": "Build a self-contained HTML composition from a structured spec. GREEN risk level — pure function, no subprocess, no filesystem write.",
"dach_specific": false
},
{
"name": "Available Tools",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Liste aller verfügbaren MCP-Tools",
"dach_specific": false
},
{
"name": "Capabilities",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Fähigkeiten und Konfiguration dieser Jarvis-Instanz",
"dach_specific": false
},
{
"name": "Core Memory",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Langfristige Kern-Erinnerungen und Persönlichkeit von Jarvis",
"dach_specific": false
},
{
"name": "Memory Entity",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Eine einzelne Entität aus dem Wissens-Graphen",
"dach_specific": false
},
{
"name": "Memory Statistics",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Gesamtstatistiken des 6-Tier Memory-Systems",
"dach_specific": false
},
{
"name": "Recent Episodes",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Die letzten episodischen Einträge (Tageslog)",
"dach_specific": false
},
{
"name": "System Status",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Aktueller Systemstatus von Jarvis",
"dach_specific": false
},
{
"name": "Workspace Files",
"module": "cognithor.mcp.resources",
"category": "misc",
"description": "Verzeichnisbaum des Jarvis-Workspace",
"dach_specific": false
},
{
"name": "add_entity",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Erstellt eine neue Entität im Wissens-Graphen. Typen: person, company, product, project, etc.",
"dach_specific": false
},
{
"name": "add_relation",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Erstellt eine Beziehung zwischen zwei Entitäten im Wissens-Graphen. Beispiel: Müller --[nutzt]→ Cloud-Pro",
"dach_specific": false
},
{
"name": "analyze_code",
"module": "cognithor.mcp.code_tools",
"category": "misc",
"description": "Analysiert Python-Code auf Code-Smells und Sicherheitsprobleme. Kombiniert AST-basierte Qualitätsanalyse mit Security-Pattern-Scanning. Read-only, kein Risiko. Akzeptiert Code als String oder Dateipfa",
"dach_specific": false
},
{
"name": "analyze_document",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Analysiert ein Dokument mit konfigurierbarem Fokus",
"dach_specific": false
},
{
"name": "api_call",
"module": "cognithor.mcp.api_hub",
"category": "misc",
"description": "Make an authenticated API call to a configured integration. Supports GET, POST, PUT, DELETE, PATCH, HEAD methods.",
"dach_specific": false
},
{
"name": "api_connect",
"module": "cognithor.mcp.api_hub",
"category": "misc",
"description": "Configure a new API integration. Supports pre-built templates for GitHub, Jira, Notion, Todoist, Home Assistant, and OpenWeatherMap. Credentials are never stored -- only the environment variable name.",
"dach_specific": false
},
{
"name": "api_disconnect",
"module": "cognithor.mcp.api_hub",
"category": "misc",
"description": "Remove an API integration configuration. This does not revoke any API keys -- only removes the local config.",
"dach_specific": false
},
{
"name": "arc_play",
"module": "cognithor.mcp.arc_tools",
"category": "misc",
"description": "Start or run an ARC-AGI-3 game session. Provide a 'game_id' to identify the environment. Optionally set 'use_llm' (default true) and 'max_steps'.",
"dach_specific": false
},
{
"name": "arc_replay",
"module": "cognithor.mcp.arc_tools",
"category": "misc",
"description": "Replay a completed ARC-AGI-3 session from its recorded audit trail. Set 'verbose' to true to see individual event details.",
"dach_specific": false
},
{
"name": "arc_status",
"module": "cognithor.mcp.arc_tools",
"category": "misc",
"description": "Query the status of an ARC-AGI-3 session. Provide 'game_id' for a specific session, or omit to list all sessions.",
"dach_specific": false
},
{
"name": "atl_goals",
"module": "cognithor.mcp.atl_tools",
"category": "misc",
"description": "Manage ATL goals. Actions: list (default), add (needs title), pause/resume/complete (needs goal_id).",
"dach_specific": false
},
{
"name": "atl_journal",
"module": "cognithor.mcp.atl_tools",
"category": "misc",
"description": "Read ATL journal entries. Default: today only. Set days > 1 for history.",
"dach_specific": false
},
{
"name": "atl_status",
"module": "cognithor.mcp.atl_tools",
"category": "misc",
"description": "Show ATL status: config, cycle count, active goals.",
"dach_specific": false
},
{
"name": "brainstorm",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Strukturiertes Brainstorming mit verschiedenen Methoden",
"dach_specific": false
},
{
"name": "calendar_check_availability",
"module": "cognithor.mcp.calendar_tools",
"category": "misc",
"description": "Freie Zeitfenster innerhalb der Arbeitszeit finden. Berücksichtigt bestehende Termine.",
"dach_specific": false
},
{
"name": "calendar_create_event",
"module": "cognithor.mcp.calendar_tools",
"category": "misc",
"description": "Neuen Kalender-Termin erstellen. Schreibt in die lokale ICS-Datei.",
"dach_specific": false
},
{
"name": "calendar_today",
"module": "cognithor.mcp.calendar_tools",
"category": "misc",
"description": "Zeigt die heutigen Kalender-Termine an. Optional ein anderes Datum angeben.",
"dach_specific": false
},
{
"name": "calendar_upcoming",
"module": "cognithor.mcp.calendar_tools",
"category": "misc",
"description": "Zeigt kommende Kalender-Termine an, sortiert nach Startzeit.",
"dach_specific": false
},
{
"name": "canvas_eval",
"module": "cognithor.mcp.canvas_tools",
"category": "misc",
"description": "Führt JavaScript-Code im Canvas-iframe aus. Kann verwendet werden um bestehende Canvas-Inhalte dynamisch zu aktualisieren ohne den gesamten HTML neu zu pushen.",
"dach_specific": false
},
{
"name": "canvas_push",
"module": "cognithor.mcp.canvas_tools",
"category": "misc",
"description": "Pusht HTML/CSS/JS-Inhalt in das Canvas-Panel des Clients. Kann für Visualisierungen, Dashboards, Formulare und interaktive Inhalte verwendet werden. Der Inhalt wird in einem sandboxed iframe dargestel",
"dach_specific": false
},
{
"name": "canvas_reset",
"module": "cognithor.mcp.canvas_tools",
"category": "misc",
"description": "Leert das Canvas und entfernt allen Inhalt.",
"dach_specific": false
},
{
"name": "canvas_snapshot",
"module": "cognithor.mcp.canvas_tools",
"category": "misc",
"description": "Liest den aktuellen HTML-Inhalt des Canvas. Nützlich um den aktuellen Zustand zu inspizieren bevor Änderungen vorgenommen werden.",
"dach_specific": false
},
{
"name": "chart_from_csv",
"module": "cognithor.mcp.chart_tools",
"category": "misc",
"description": "Erstellt ein Diagramm direkt aus einer CSV-Datei. Liest die Datei, erkennt Spalten automatisch, erstellt PNG.",
"dach_specific": false
},
{
"name": "check_background_job",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "Check status and recent output of a background job.",
"dach_specific": false
},
{
"name": "code_review",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Führt ein umfassendes Code-Review mit Sicherheitsfokus durch",
"dach_specific": false
},
{
"name": "computer_click",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Click at specific pixel coordinates on the desktop. Use computer_screenshot first to identify element positions.",
"dach_specific": false
},
{
"name": "computer_click_element",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Click a UI element by description instead of coordinates. Takes a screenshot, finds the matching element via vision, and clicks it. Example: 'Login button', 'the search field', 'Close icon'.",
"dach_specific": false
},
{
"name": "computer_drag",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Drag from one position to another (e.g., for drag-and-drop).",
"dach_specific": false
},
{
"name": "computer_hotkey",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Press a keyboard shortcut. Pass keys separated by +. Examples: 'ctrl+c', 'ctrl+v', 'alt+tab', 'enter', 'escape', 'ctrl+shift+s'.",
"dach_specific": false
},
{
"name": "computer_screenshot",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Take a screenshot of the desktop and describe visible UI elements with their approximate pixel coordinates. Use this to see what's on screen before clicking.",
"dach_specific": false
},
{
"name": "computer_scroll",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Scroll at specific coordinates on the desktop.",
"dach_specific": false
},
{
"name": "computer_type",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Type text using the keyboard. Supports Unicode (umlauts, etc.). Click a text field first with computer_click.",
"dach_specific": false
},
{
"name": "computer_wait_for_change",
"module": "cognithor.mcp.computer_use",
"category": "misc",
"description": "Wait until the screen changes after an action. Confirms that a click/type/hotkey had a visible effect. Returns whether the screen changed and optionally what changed.",
"dach_specific": false
},
{
"name": "create_chart",
"module": "cognithor.mcp.chart_tools",
"category": "misc",
"description": "Erstellt ein Diagramm aus Daten (bar, line, pie, scatter, hbar). Akzeptiert Daten als Liste von Dicts oder CSV-String. Speichert als PNG im Workspace. Dark-Theme.",
"dach_specific": false
},
{
"name": "create_skill",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Erstellt einen neuen Jarvis-Skill als Markdown-Datei. Der Skill ist sofort nach Erstellung verfuegbar.",
"dach_specific": false
},
{
"name": "create_table_image",
"module": "cognithor.mcp.chart_tools",
"category": "misc",
"description": "Rendert Daten als formatierte Tabelle in einem Bild (PNG). Optionales Highlighting der Maximalwerte. Dark-Theme.",
"dach_specific": false
},
{
"name": "daily_briefing",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Erstellt ein tägliches Briefing aus Memory-Daten und Kontext",
"dach_specific": false
},
{
"name": "db_connect",
"module": "cognithor.mcp.database_tools",
"category": "misc",
"description": "Testet eine Datenbankverbindung und zeigt Informationen an (Typ, Version, Groesse, Anzahl Tabellen).",
"dach_specific": false
},
{
"name": "db_execute",
"module": "cognithor.mcp.database_tools",
"category": "misc",
"description": "Fuehrt eine schreibende SQL-Anweisung aus (INSERT/UPDATE/DELETE/CREATE). Erfordert Gatekeeper-Genehmigung. DROP-Anweisungen sind blockiert.",
"dach_specific": false
},
{
"name": "db_query",
"module": "cognithor.mcp.database_tools",
"category": "misc",
"description": "Fuehrt eine SELECT-Abfrage auf einer Datenbank aus (read-only). Unterstuetzt SQLite (Dateipfad) und PostgreSQL (Connection-String). Ergebnis: Formatierte Tabelle mit Spalten und Zeilen.",
"dach_specific": false
},
{
"name": "db_schema",
"module": "cognithor.mcp.database_tools",
"category": "misc",
"description": "Zeigt das Schema einer Datenbank an. Ohne table-Parameter: Liste aller Tabellen. Mit table-Parameter: Detaillierte Spalteninformationen.",
"dach_specific": false
},
{
"name": "delete_entity",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Löscht eine Entität und alle zugehörigen Relationen aus dem Wissens-Graphen (GDPR erasure). Exakter Name-Match.",
"dach_specific": false
},
{
"name": "delete_relation",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Löscht eine Relation zwischen zwei Entitäten aus dem Wissens-Graphen (GDPR erasure).",
"dach_specific": false
},
{
"name": "docker_inspect",
"module": "cognithor.mcp.docker_tools",
"category": "misc",
"description": "Inspect a Docker container or image. Returns detailed JSON info including state, config, network settings, and mounts.",
"dach_specific": false
},
{
"name": "docker_logs",
"module": "cognithor.mcp.docker_tools",
"category": "misc",
"description": "Get logs from a Docker container. Supports tail lines and time-based filtering.",
"dach_specific": false
},
{
"name": "docker_ps",
"module": "cognithor.mcp.docker_tools",
"category": "misc",
"description": "List Docker containers. Shows ID, name, image, status, and ports. Use all=true to include stopped containers.",
"dach_specific": false
},
{
"name": "docker_run",
"module": "cognithor.mcp.docker_tools",
"category": "misc",
"description": "Start a Docker container from an image. Supports port mapping, environment variables, and custom commands. Security: --privileged and host network modes are blocked.",
"dach_specific": false
},
{
"name": "docker_stop",
"module": "cognithor.mcp.docker_tools",
"category": "misc",
"description": "Stop a running Docker container gracefully. Sends SIGTERM, then SIGKILL after timeout.",
"dach_specific": false
},
{
"name": "edit_file",
"module": "cognithor.mcp.filesystem",
"category": "misc",
"description": "Ersetzt einen eindeutigen String in einer Datei (str_replace).",
"dach_specific": false
},
{
"name": "email_read_inbox",
"module": "cognithor.mcp.email_tools",
"category": "misc",
"description": "E-Mails aus dem Posteingang lesen. Gibt Absender, Betreff, Datum und eine Vorschau zurück.",
"dach_specific": false
},
{
"name": "email_search",
"module": "cognithor.mcp.email_tools",
"category": "misc",
"description": "E-Mails durchsuchen nach Absender, Betreff, Inhalt oder Datum.",
"dach_specific": false
},
{
"name": "email_send",
"module": "cognithor.mcp.email_tools",
"category": "misc",
"description": "E-Mail senden über SMTP. Unterstützt Text und HTML, CC/BCC und Datei-Anhänge aus dem Workspace.",
"dach_specific": false
},
{
"name": "email_summarize",
"module": "cognithor.mcp.email_tools",
"category": "misc",
"description": "Posteingang zusammenfassen: Gruppierung nach Absender und Thread, Statistiken und Top-Absender.",
"dach_specific": false
},
{
"name": "exec_command",
"module": "cognithor.mcp.shell",
"category": "misc",
"description": "",
"dach_specific": false
},
{
"name": "explain_concept",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Erklärt ein Konzept für verschiedene Zielgruppen",
"dach_specific": false
},
{
"name": "find_and_replace",
"module": "cognithor.mcp.search_tools",
"category": "misc",
"description": "Sucht und ersetzt Text in Dateien. WICHTIG: Standard ist dry_run=true (nur Vorschau). Erstellt .bak-Backups vor Aenderungen. Unterstuetzt Text und Regex.",
"dach_specific": false
},
{
"name": "find_in_files",
"module": "cognithor.mcp.search_tools",
"category": "misc",
"description": "Durchsucht Dateiinhalte nach Text oder Regex. Zeigt Treffer mit Kontext (Zeilen davor/danach). Ueberspringt automatisch Binaerdateien und grosse Dateien.",
"dach_specific": false
},
{
"name": "get_clipboard",
"module": "cognithor.mcp.desktop_tools",
"category": "misc",
"description": "Read clipboard content (text or image). Note: Clipboard may contain sensitive information.",
"dach_specific": false
},
{
"name": "get_core_memory",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Gibt die CORE.md zurück (Identität, Regeln, Präferenzen).",
"dach_specific": false
},
{
"name": "get_entity",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Lädt eine Entität aus dem Wissens-Graphen mit allen Attributen und Relationen. Sucht per Name (Teilmatch möglich).",
"dach_specific": false
},
{
"name": "get_recent_episodes",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Lädt die Tageslog-Einträge der letzten Tage.",
"dach_specific": false
},
{
"name": "git_branch",
"module": "cognithor.mcp.git_tools",
"category": "misc",
"description": "Git-Branch-Operationen: list (alle Branches anzeigen), create (neuen Branch erstellen), switch (Branch wechseln), delete (Branch sicher loeschen, nur -d).",
"dach_specific": false
},
{
"name": "git_commit",
"module": "cognithor.mcp.git_tools",
"category": "misc",
"description": "Staged bestimmte Dateien und erstellt einen Git-Commit. KEIN 'git add .' -- nur explizit benannte Dateien werden gestaged. Optional: --amend zum Aendern des letzten Commits.",
"dach_specific": false
},
{
"name": "git_diff",
"module": "cognithor.mcp.git_tools",
"category": "misc",
"description": "Zeigt Git-Diffs an. Optionen: unstaged (Default), staged (--cached), oder Vergleich mit einem bestimmten Commit.",
"dach_specific": false
},
{
"name": "git_log",
"module": "cognithor.mcp.git_tools",
"category": "misc",
"description": "Zeigt die Git-Commit-History. Optionaler Autor-Filter und kompaktes Format.",
"dach_specific": false
},
{
"name": "git_status",
"module": "cognithor.mcp.git_tools",
"category": "misc",
"description": "Zeigt den Git Working-Tree-Status: staged, unstaged und untracked Dateien. Read-only, kein Risiko.",
"dach_specific": false
},
{
"name": "install_community_skill",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Installiert einen Community-Skill aus dem oeffentlichen Registry. Fuehrt automatisch 5 Sicherheits-Checks durch und zeigt benoetigte Tool-Permissions an.",
"dach_specific": false
},
{
"name": "insurance_advisor",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Versicherungsberatung für BU, bAV, Risikoleben und weitere Produkte",
"dach_specific": false
},
{
"name": "kanban_create_task",
"module": "cognithor.mcp.kanban_tools",
"category": "misc",
"description": "Create a new task on the Kanban board",
"dach_specific": false
},
{
"name": "kanban_list_tasks",
"module": "cognithor.mcp.kanban_tools",
"category": "misc",
"description": "List tasks on the Kanban board",
"dach_specific": false
},
{
"name": "kanban_update_task",
"module": "cognithor.mcp.kanban_tools",
"category": "misc",
"description": "Update a task's status or result on the Kanban board",
"dach_specific": false
},
{
"name": "knowledge_gaps",
"module": "cognithor.mcp.synthesis",
"category": "misc",
"description": "Analysiert was zu einem Thema bekannt ist und was fehlt. Gibt einen Vollständigkeits-Score und priorisierte Recherche-Vorschläge.",
"dach_specific": false
},
{
"name": "knowledge_timeline",
"module": "cognithor.mcp.synthesis",
"category": "misc",
"description": "Baut eine chronologische Zeitlinie aus allen verfügbaren Quellen auf. Zeigt Kausalketten (X führte zu Y) und erkennbare Trends.",
"dach_specific": false
},
{
"name": "list_background_jobs",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "List all background jobs (active and recent completed).",
"dach_specific": false
},
{
"name": "list_directory",
"module": "cognithor.mcp.filesystem",
"category": "misc",
"description": "Listet Verzeichnisinhalt als Baumstruktur.",
"dach_specific": false
},
{
"name": "list_reminders",
"module": "cognithor.mcp.notification_tools",
"category": "misc",
"description": "List active/pending reminders. Set include_past=true to see fired/cancelled ones.",
"dach_specific": false
},
{
"name": "list_skills",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Listet alle registrierten Jarvis-Skills mit Name, Kategorie, Keywords und Erfolgsrate.",
"dach_specific": false
},
{
"name": "memory_stats",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Zeigt Statistiken des Memory-Systems (Chunks, Entitäten, Prozeduren etc.).",
"dach_specific": false
},
{
"name": "pse_is_synthesizable",
"module": "cognithor.mcp.pse_tools",
"category": "misc",
"description": "Classifier: returns 'yes' / 'no' for whether the given examples are routable to the Cognithor Program Synthesis Engine. Cheap — no engine boot. Use before pse_synthesize.",
"dach_specific": false
},
{
"name": "pse_status",
"module": "cognithor.mcp.pse_tools",
"category": "misc",
"description": "Return PSE engine version + primitive count.",
"dach_specific": false
},
{
"name": "pse_synthesize",
"module": "cognithor.mcp.pse_tools",
"category": "misc",
"description": "Synthesize a deterministic program from input/output examples using the Cognithor PSE (enumerative search over a typed DSL with NumPy fast-path + cache). Replayable, no LLM hallucination. Anti-overfit",
"dach_specific": false
},
{
"name": "pse_synthesize_refined",
"module": "cognithor.mcp.pse_tools",
"category": "misc",
"description": "Sprint-25: Hybrid-Pipeline (LLM → Synthese → LLM-Refinement). Synthesises a program from input/output examples (same engine as pse_synthesize), then runs ONE LLM-refinement pass over the result and re",
"dach_specific": false
},
{
"name": "publish_skill",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Publish a local skill to the Cognithor Community Skill Registry on GitHub. The skill must exist locally and have valid frontmatter with trigger_keywords and tools_required. Requires GitHub credentials",
"dach_specific": false
},
{
"name": "read_background_log",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "Read the log/output of a background job. Supports tail (last N lines), head (first N lines), offset+limit pagination, and grep filtering.",
"dach_specific": false
},
{
"name": "read_file",
"module": "cognithor.mcp.filesystem",
"category": "misc",
"description": "Liest eine Datei. Pfad wird gegen Sandbox-Policy geprüft.",
"dach_specific": false
},
{
"name": "record_procedure_usage",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Meldet Erfolg/Misserfolg einer Prozedur für Lern-Tracking.",
"dach_specific": false
},
{
"name": "remote_exec",
"module": "cognithor.mcp.remote_shell",
"category": "misc",
"description": "Execute a command on a remote host via SSH. Use for running commands on servers, Docker containers, or VPS instances. Requires host to be registered first.",
"dach_specific": false
},
{
"name": "remote_list_hosts",
"module": "cognithor.mcp.remote_shell",
"category": "misc",
"description": "List all registered remote SSH hosts.",
"dach_specific": false
},
{
"name": "remote_test_connection",
"module": "cognithor.mcp.remote_shell",
"category": "misc",
"description": "Test SSH connection to a registered host.",
"dach_specific": false
},
{
"name": "report_skill",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Meldet einen Community-Skill als missbraeuchlich oder problematisch.",
"dach_specific": false
},
{
"name": "run_python",
"module": "cognithor.mcp.code_tools",
"category": "misc",
"description": "Führt Python-Code in einer Sandbox aus. Der Code wird als temporäre Datei geschrieben und via Python-Interpreter ausgeführt. Arbeitsverzeichnis: ~/.cognithor/workspace/. Für autonomes Coding: Schreibe",
"dach_specific": false
},
{
"name": "save_to_memory",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Speichert neue Information ins Jarvis-Gedächtnis. Tier wählen: 'episodic' für Tageslog, 'semantic' für Fakten, 'procedural' für gelernte Abläufe.",
"dach_specific": false
},
{
"name": "screenshot_desktop",
"module": "cognithor.mcp.desktop_tools",
"category": "misc",
"description": "Take a full desktop screenshot. Note: Screenshots may contain sensitive information.",
"dach_specific": false
},
{
"name": "screenshot_region",
"module": "cognithor.mcp.desktop_tools",
"category": "misc",
"description": "Take a screenshot of a specific screen region. Note: Screenshots may contain sensitive information.",
"dach_specific": false
},
{
"name": "search_community_skills",
"module": "cognithor.mcp.skill_tools",
"category": "misc",
"description": "Durchsucht das Community-Skill-Registry nach verfuegbaren Skills.",
"dach_specific": false
},
{
"name": "search_files",
"module": "cognithor.mcp.search_tools",
"category": "misc",
"description": "Findet Dateien nach Name oder Glob-Pattern (z.B. '*.py', '**/*.json'). Rekursive Suche mit automatischem Ausschluss von .git, node_modules, etc.",
"dach_specific": false
},
{
"name": "search_memory",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Durchsucht das Jarvis-Gedächtnis (alle 5 Tiers). Nutzt Hybrid-Suche: BM25 (lexikalisch) + Vektor (semantisch) + Graph. Immer als ERSTES aufrufen wenn du Kontext brauchst.",
"dach_specific": false
},
{
"name": "search_procedures",
"module": "cognithor.mcp.memory_server",
"category": "misc",
"description": "Sucht nach gelernten Prozeduren/Skills. Prozeduren enthalten bewährte Abläufe für wiederkehrende Aufgaben.",
"dach_specific": false
},
{
"name": "send_notification",
"module": "cognithor.mcp.notification_tools",
"category": "misc",
"description": "Send an immediate desktop notification with a title and message.",
"dach_specific": false
},
{
"name": "set_clipboard",
"module": "cognithor.mcp.desktop_tools",
"category": "misc",
"description": "Copy text to the system clipboard.",
"dach_specific": false
},
{
"name": "set_reminder",
"module": "cognithor.mcp.notification_tools",
"category": "misc",
"description": "Set a reminder for the future. Provide 'text' and either 'delay_minutes' (relative) or 'at' (ISO datetime). Optional 'repeat': none/daily/weekly.",
"dach_specific": false
},
{
"name": "social_leads",
"module": "cognithor.mcp.social_tools",
"category": "misc",
"description": "Leads von allen Plattformen auflisten mit optionalen Filtern",
"dach_specific": false
},
{
"name": "social_scan",
"module": "cognithor.mcp.social_tools",
"category": "misc",
"description": "Scanne soziale Plattformen nach Leads (Reddit, Hacker News, Discord, RSS)",
"dach_specific": false
},
{
"name": "start_background",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "Start a shell command in the background. Returns a job_id for monitoring. Use for long-running tasks like downloads, builds, or training runs.",
"dach_specific": false
},
{
"name": "stop_background_job",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "Stop a running background job. Use force=true for immediate SIGKILL.",
"dach_specific": false
},
{
"name": "summarize",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Erstellt eine strukturierte Zusammenfassung",
"dach_specific": false
},
{
"name": "translate",
"module": "cognithor.mcp.prompts",
"category": "misc",
"description": "Kontextsensitive Übersetzung mit Fachbegriff-Bewahrung",
"dach_specific": false
},
{
"name": "vault_delete",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Delete a vault note by path (GDPR erasure)",
"dach_specific": false
},
{
"name": "vault_link",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Erstellt eine bidirektionale [[Backlink]]-Verknüpfung zwischen zwei Notizen im Vault.",
"dach_specific": false
},
{
"name": "vault_list",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Listet Notizen im Knowledge Vault auf. Filterbar nach Ordner und Tags, sortierbar nach Datum oder Titel.",
"dach_specific": false
},
{
"name": "vault_read",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Liest eine einzelne Notiz aus dem Vault. Akzeptiert Titel, relativen Pfad oder Slug.",
"dach_specific": false
},
{
"name": "vault_save",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Speichert eine Notiz im Knowledge Vault (Obsidian-kompatibel). Erstellt Markdown mit YAML-Frontmatter, Tags und [[Backlinks]]. Ideal für Recherche-Ergebnisse, Meeting-Notizen, Wissensartikel.",
"dach_specific": false
},
{
"name": "vault_search",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Durchsucht das Knowledge Vault nach Notizen. Volltextsuche in Titel und Inhalt, filterbar nach Ordner und Tags.",
"dach_specific": false
},
{
"name": "vault_update",
"module": "cognithor.mcp.vault",
"category": "misc",
"description": "Aktualisiert eine bestehende Notiz im Vault. Kann Text anhängen und/oder Tags ergänzen.",
"dach_specific": false
},
{
"name": "video_caption_overlay",
"module": "cognithor.mcp.video_tools",
"category": "misc",
"description": "Glue a parallel caption track onto an existing composition spec. GREEN risk level — pure-function transform; emits new HTML.",
"dach_specific": false
},
{
"name": "video_compose_explainer",
"module": "cognithor.mcp.video_tools",
"category": "misc",
"description": "Title card + body sections + optional CTA in 16:9. GREEN risk level — pure-function preset over video_compose.",
"dach_specific": false
},
{
"name": "video_compose_social_cut",
"module": "cognithor.mcp.video_tools",
"category": "misc",
"description": "Vertical 9:16 short with hook + fast-cut beats + outro. GREEN risk level — pure-function preset over video_compose.",
"dach_specific": false
},
{
"name": "wait_background_job",
"module": "cognithor.mcp.background_tasks",
"category": "misc",
"description": "Wait for a background job to complete (with timeout).",
"dach_specific": false
},
{
"name": "web_news_search",
"module": "cognithor.mcp.web",
"category": "misc",
"description": "Nachrichtensuche durchführen. Gibt aktuelle Nachrichten mit Titel, Quelle, Datum und Snippet zurück. Ideal für aktuelle Ereignisse und Neuigkeiten.",
"dach_specific": false
},
{
"name": "write_file",
"module": "cognithor.mcp.filesystem",
"category": "misc",
"description": "Erstellt oder überschreibt eine Datei (atomar).",
"dach_specific": false
},
{
"name": "api_list",
"module": "cognithor.mcp.api_hub",
"category": "web",
"description": "List all configured API integrations and available templates. Shows connection status, auth type, and base URL.",
"dach_specific": false
},
{
"name": "http_request",
"module": "cognithor.mcp.web",
"category": "web",
"description": "HTTP-Request ausführen (GET/POST/PUT/PATCH/DELETE). Für API-Aufrufe, Webhooks und REST-Interaktionen.",
"dach_specific": false
},
{
"name": "investigate_org",
"module": "cognithor.mcp.osint_tools",
"category": "web",
"description": "OSINT investigation of an organization: checks web presence, funding, team",
"dach_specific": false
},
{
"name": "investigate_person",
"module": "cognithor.mcp.osint_tools",
"category": "web",
"description": "OSINT investigation of a person: collects evidence from GitHub, web, arXiv, cross-verifies claims, computes Trust Score (0-100)",
"dach_specific": false
},
{
"name": "investigate_project",
"module": "cognithor.mcp.osint_tools",
"category": "web",
"description": "OSINT investigation of a project: checks GitHub repos, web mentions, funding claims",
"dach_specific": false
},
{
"name": "knowledge_contradictions",
"module": "cognithor.mcp.synthesis",
"category": "web",
"description": "Vergleicht gespeichertes Wissen (Memory + Vault) mit aktuellen Web-Informationen und identifiziert Widersprüche, veraltete Fakten und neue Erkenntnisse.",
"dach_specific": false
},
{
"name": "knowledge_synthesize",
"module": "cognithor.mcp.synthesis",
"category": "web",
"description": "Vollständige Wissenssynthese: Sammelt alle Quellen (Memory, Vault, Web), vergleicht Informationen, erkennt Widersprüche, baut Zeitlinien, bewertet Konfidenz und identifiziert Wissenslücken. DAS zentra",
"dach_specific": false
},
{
"name": "search_and_read",
"module": "cognithor.mcp.web",
"category": "web",
"description": "Kombinierte Websuche + Fetch: Sucht im Web und liest die Top-Ergebnisse. Ideal für tiefere Recherche. Mit cross_check=true werden Quellen verglichen.",
"dach_specific": false
},
{
"name": "video_render",
"module": "cognithor.mcp.video_tools",
"category": "web",
"description": "Render a composition HTML to MP4 / MOV / WebM via the configured renderer (default: HyperFrames). Writes under ~/.cognithor/render/<run_id>/. ORANGE risk level — requires user approval. Raw user-suppl",
"dach_specific": false
},
{
"name": "web_fetch",
"module": "cognithor.mcp.web",
"category": "web",
"description": "URL abrufen und Haupttext extrahieren. Nutzt trafilatura für saubere Text-Extraktion, mit automatischem Jina AI Reader Fallback für JS-heavy Seiten.",
"dach_specific": false
},
{
"name": "web_search",
"module": "cognithor.mcp.web",
"category": "web",
"description": "Websuche durchführen. Gibt formatierte Suchergebnisse mit Titel, URL und Snippet zurück. Unterstützt Zeitfilter für aktuelle Ergebnisse.",
"dach_specific": false
}
]
}