@pellux/goodvibes-sdk 0.33.25 → 0.33.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/contracts/artifacts/operator-contract.json +1090 -4
  2. package/dist/platform/agents/worktree.d.ts +3 -0
  3. package/dist/platform/agents/worktree.d.ts.map +1 -1
  4. package/dist/platform/agents/worktree.js +64 -2
  5. package/dist/platform/agents/wrfc-controller.d.ts +3 -1
  6. package/dist/platform/agents/wrfc-controller.d.ts.map +1 -1
  7. package/dist/platform/agents/wrfc-controller.js +59 -9
  8. package/dist/platform/control-plane/method-catalog-runtime.d.ts.map +1 -1
  9. package/dist/platform/control-plane/method-catalog-runtime.js +150 -2
  10. package/dist/platform/daemon/facade-composition.d.ts.map +1 -1
  11. package/dist/platform/daemon/facade-composition.js +2 -0
  12. package/dist/platform/daemon/http/mcp-routes.d.ts +13 -0
  13. package/dist/platform/daemon/http/mcp-routes.d.ts.map +1 -0
  14. package/dist/platform/daemon/http/mcp-routes.js +128 -0
  15. package/dist/platform/daemon/http/router.d.ts +2 -0
  16. package/dist/platform/daemon/http/router.d.ts.map +1 -1
  17. package/dist/platform/daemon/http/router.js +12 -0
  18. package/dist/platform/git/service.d.ts +4 -0
  19. package/dist/platform/git/service.d.ts.map +1 -1
  20. package/dist/platform/git/service.js +33 -0
  21. package/dist/platform/mcp/config.d.ts +27 -0
  22. package/dist/platform/mcp/config.d.ts.map +1 -1
  23. package/dist/platform/mcp/config.js +165 -46
  24. package/dist/platform/mcp/index.d.ts +3 -3
  25. package/dist/platform/mcp/index.d.ts.map +1 -1
  26. package/dist/platform/mcp/index.js +1 -1
  27. package/dist/platform/mcp/mcp-api.d.ts +24 -0
  28. package/dist/platform/mcp/mcp-api.d.ts.map +1 -1
  29. package/dist/platform/mcp/mcp-api.js +12 -0
  30. package/dist/platform/mcp/registry.d.ts +27 -2
  31. package/dist/platform/mcp/registry.d.ts.map +1 -1
  32. package/dist/platform/mcp/registry.js +106 -8
  33. package/dist/platform/version.js +1 -1
  34. package/package.json +9 -9
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.33.25"
6
+ "version": "0.33.27"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -51077,6 +51077,1092 @@
51077
51077
  },
51078
51078
  "invokable": true
51079
51079
  },
51080
+ {
51081
+ "id": "mcp.config.get",
51082
+ "title": "MCP Effective Config",
51083
+ "description": "Return effective MCP config from global, external, and project sources. Environment values are redacted to envKeys.",
51084
+ "category": "mcp",
51085
+ "source": "builtin",
51086
+ "access": "authenticated",
51087
+ "transport": [
51088
+ "http",
51089
+ "ws"
51090
+ ],
51091
+ "scopes": [
51092
+ "read:mcp"
51093
+ ],
51094
+ "http": {
51095
+ "method": "GET",
51096
+ "path": "/api/mcp/config"
51097
+ },
51098
+ "events": [
51099
+ "runtime.mcp"
51100
+ ],
51101
+ "inputSchema": {
51102
+ "type": "object",
51103
+ "properties": {},
51104
+ "additionalProperties": false
51105
+ },
51106
+ "outputSchema": {
51107
+ "type": "object",
51108
+ "properties": {
51109
+ "locations": {
51110
+ "type": "array",
51111
+ "items": {
51112
+ "type": "object",
51113
+ "properties": {
51114
+ "scope": {
51115
+ "type": "string"
51116
+ },
51117
+ "kind": {
51118
+ "type": "string"
51119
+ },
51120
+ "path": {
51121
+ "type": "string"
51122
+ },
51123
+ "writable": {
51124
+ "type": "boolean"
51125
+ }
51126
+ },
51127
+ "required": [
51128
+ "scope",
51129
+ "kind",
51130
+ "path",
51131
+ "writable"
51132
+ ],
51133
+ "additionalProperties": false
51134
+ }
51135
+ },
51136
+ "servers": {
51137
+ "type": "array",
51138
+ "items": {
51139
+ "type": "object",
51140
+ "properties": {
51141
+ "name": {
51142
+ "type": "string"
51143
+ },
51144
+ "command": {
51145
+ "type": "string"
51146
+ },
51147
+ "args": {
51148
+ "type": "array",
51149
+ "items": {
51150
+ "type": "string"
51151
+ }
51152
+ },
51153
+ "envKeys": {
51154
+ "type": "array",
51155
+ "items": {
51156
+ "type": "string"
51157
+ }
51158
+ },
51159
+ "role": {
51160
+ "anyOf": [
51161
+ {
51162
+ "type": "string"
51163
+ },
51164
+ {
51165
+ "type": "null"
51166
+ }
51167
+ ]
51168
+ },
51169
+ "trustMode": {
51170
+ "anyOf": [
51171
+ {
51172
+ "type": "string"
51173
+ },
51174
+ {
51175
+ "type": "null"
51176
+ }
51177
+ ]
51178
+ },
51179
+ "allowedPaths": {
51180
+ "type": "array",
51181
+ "items": {
51182
+ "type": "string"
51183
+ }
51184
+ },
51185
+ "allowedHosts": {
51186
+ "type": "array",
51187
+ "items": {
51188
+ "type": "string"
51189
+ }
51190
+ },
51191
+ "source": {
51192
+ "type": "object",
51193
+ "properties": {
51194
+ "scope": {
51195
+ "type": "string"
51196
+ },
51197
+ "kind": {
51198
+ "type": "string"
51199
+ },
51200
+ "path": {
51201
+ "type": "string"
51202
+ },
51203
+ "writable": {
51204
+ "type": "boolean"
51205
+ }
51206
+ },
51207
+ "required": [
51208
+ "scope",
51209
+ "kind",
51210
+ "path",
51211
+ "writable"
51212
+ ],
51213
+ "additionalProperties": false
51214
+ }
51215
+ },
51216
+ "required": [
51217
+ "name",
51218
+ "command",
51219
+ "args",
51220
+ "envKeys",
51221
+ "role",
51222
+ "trustMode",
51223
+ "allowedPaths",
51224
+ "allowedHosts",
51225
+ "source"
51226
+ ],
51227
+ "additionalProperties": false
51228
+ }
51229
+ }
51230
+ },
51231
+ "required": [
51232
+ "locations",
51233
+ "servers"
51234
+ ],
51235
+ "additionalProperties": false
51236
+ },
51237
+ "invokable": true
51238
+ },
51239
+ {
51240
+ "id": "mcp.config.reload",
51241
+ "title": "Reload MCP Config",
51242
+ "description": "Reload effective MCP config and reconnect added, removed, or changed servers without daemon restart.",
51243
+ "category": "mcp",
51244
+ "source": "builtin",
51245
+ "access": "admin",
51246
+ "transport": [
51247
+ "http",
51248
+ "ws"
51249
+ ],
51250
+ "scopes": [
51251
+ "write:mcp"
51252
+ ],
51253
+ "http": {
51254
+ "method": "POST",
51255
+ "path": "/api/mcp/reload"
51256
+ },
51257
+ "events": [
51258
+ "runtime.mcp"
51259
+ ],
51260
+ "inputSchema": {
51261
+ "type": "object",
51262
+ "properties": {},
51263
+ "additionalProperties": false
51264
+ },
51265
+ "outputSchema": {
51266
+ "type": "object",
51267
+ "properties": {
51268
+ "reload": {
51269
+ "type": "object",
51270
+ "properties": {
51271
+ "added": {
51272
+ "type": "number"
51273
+ },
51274
+ "changed": {
51275
+ "type": "number"
51276
+ },
51277
+ "removed": {
51278
+ "type": "number"
51279
+ },
51280
+ "unchanged": {
51281
+ "type": "number"
51282
+ },
51283
+ "servers": {
51284
+ "type": "array",
51285
+ "items": {
51286
+ "type": "object",
51287
+ "properties": {
51288
+ "name": {
51289
+ "type": "string"
51290
+ },
51291
+ "action": {
51292
+ "type": "string",
51293
+ "enum": [
51294
+ "added",
51295
+ "changed",
51296
+ "removed",
51297
+ "unchanged"
51298
+ ]
51299
+ },
51300
+ "connected": {
51301
+ "type": "boolean"
51302
+ }
51303
+ },
51304
+ "required": [
51305
+ "name",
51306
+ "action",
51307
+ "connected"
51308
+ ],
51309
+ "additionalProperties": false
51310
+ }
51311
+ }
51312
+ },
51313
+ "required": [
51314
+ "added",
51315
+ "changed",
51316
+ "removed",
51317
+ "unchanged",
51318
+ "servers"
51319
+ ],
51320
+ "additionalProperties": false
51321
+ },
51322
+ "config": {
51323
+ "type": "object",
51324
+ "properties": {
51325
+ "locations": {
51326
+ "type": "array",
51327
+ "items": {
51328
+ "type": "object",
51329
+ "properties": {
51330
+ "scope": {
51331
+ "type": "string"
51332
+ },
51333
+ "kind": {
51334
+ "type": "string"
51335
+ },
51336
+ "path": {
51337
+ "type": "string"
51338
+ },
51339
+ "writable": {
51340
+ "type": "boolean"
51341
+ }
51342
+ },
51343
+ "required": [
51344
+ "scope",
51345
+ "kind",
51346
+ "path",
51347
+ "writable"
51348
+ ],
51349
+ "additionalProperties": false
51350
+ }
51351
+ },
51352
+ "servers": {
51353
+ "type": "array",
51354
+ "items": {
51355
+ "type": "object",
51356
+ "properties": {
51357
+ "name": {
51358
+ "type": "string"
51359
+ },
51360
+ "command": {
51361
+ "type": "string"
51362
+ },
51363
+ "args": {
51364
+ "type": "array",
51365
+ "items": {
51366
+ "type": "string"
51367
+ }
51368
+ },
51369
+ "envKeys": {
51370
+ "type": "array",
51371
+ "items": {
51372
+ "type": "string"
51373
+ }
51374
+ },
51375
+ "role": {
51376
+ "anyOf": [
51377
+ {
51378
+ "type": "string"
51379
+ },
51380
+ {
51381
+ "type": "null"
51382
+ }
51383
+ ]
51384
+ },
51385
+ "trustMode": {
51386
+ "anyOf": [
51387
+ {
51388
+ "type": "string"
51389
+ },
51390
+ {
51391
+ "type": "null"
51392
+ }
51393
+ ]
51394
+ },
51395
+ "allowedPaths": {
51396
+ "type": "array",
51397
+ "items": {
51398
+ "type": "string"
51399
+ }
51400
+ },
51401
+ "allowedHosts": {
51402
+ "type": "array",
51403
+ "items": {
51404
+ "type": "string"
51405
+ }
51406
+ },
51407
+ "source": {
51408
+ "type": "object",
51409
+ "properties": {
51410
+ "scope": {
51411
+ "type": "string"
51412
+ },
51413
+ "kind": {
51414
+ "type": "string"
51415
+ },
51416
+ "path": {
51417
+ "type": "string"
51418
+ },
51419
+ "writable": {
51420
+ "type": "boolean"
51421
+ }
51422
+ },
51423
+ "required": [
51424
+ "scope",
51425
+ "kind",
51426
+ "path",
51427
+ "writable"
51428
+ ],
51429
+ "additionalProperties": false
51430
+ }
51431
+ },
51432
+ "required": [
51433
+ "name",
51434
+ "command",
51435
+ "args",
51436
+ "envKeys",
51437
+ "role",
51438
+ "trustMode",
51439
+ "allowedPaths",
51440
+ "allowedHosts",
51441
+ "source"
51442
+ ],
51443
+ "additionalProperties": false
51444
+ }
51445
+ }
51446
+ },
51447
+ "required": [
51448
+ "locations",
51449
+ "servers"
51450
+ ],
51451
+ "additionalProperties": false
51452
+ }
51453
+ },
51454
+ "required": [
51455
+ "reload",
51456
+ "config"
51457
+ ],
51458
+ "additionalProperties": false
51459
+ },
51460
+ "invokable": true
51461
+ },
51462
+ {
51463
+ "id": "mcp.servers.list",
51464
+ "title": "MCP Servers List",
51465
+ "description": "Return configured MCP servers, runtime security posture, and sandbox bindings.",
51466
+ "category": "mcp",
51467
+ "source": "builtin",
51468
+ "access": "authenticated",
51469
+ "transport": [
51470
+ "http",
51471
+ "ws"
51472
+ ],
51473
+ "scopes": [
51474
+ "read:mcp"
51475
+ ],
51476
+ "http": {
51477
+ "method": "GET",
51478
+ "path": "/api/mcp/servers"
51479
+ },
51480
+ "events": [
51481
+ "runtime.mcp"
51482
+ ],
51483
+ "inputSchema": {
51484
+ "type": "object",
51485
+ "properties": {},
51486
+ "additionalProperties": false
51487
+ },
51488
+ "outputSchema": {
51489
+ "type": "object",
51490
+ "properties": {
51491
+ "servers": {
51492
+ "type": "array",
51493
+ "items": {
51494
+ "type": "object",
51495
+ "properties": {
51496
+ "name": {
51497
+ "type": "string"
51498
+ },
51499
+ "connected": {
51500
+ "type": "boolean"
51501
+ }
51502
+ },
51503
+ "required": [
51504
+ "name",
51505
+ "connected"
51506
+ ],
51507
+ "additionalProperties": false
51508
+ }
51509
+ },
51510
+ "security": {
51511
+ "type": "array",
51512
+ "items": {
51513
+ "type": "object",
51514
+ "properties": {},
51515
+ "additionalProperties": true
51516
+ }
51517
+ },
51518
+ "sandboxBindings": {
51519
+ "type": "array",
51520
+ "items": {
51521
+ "type": "object",
51522
+ "properties": {},
51523
+ "additionalProperties": true
51524
+ }
51525
+ }
51526
+ },
51527
+ "required": [
51528
+ "servers",
51529
+ "security",
51530
+ "sandboxBindings"
51531
+ ],
51532
+ "additionalProperties": false
51533
+ },
51534
+ "invokable": true
51535
+ },
51536
+ {
51537
+ "id": "mcp.servers.remove",
51538
+ "title": "Remove MCP Server",
51539
+ "description": "Remove a project/global MCP server config and disconnect it without daemon restart.",
51540
+ "category": "mcp",
51541
+ "source": "builtin",
51542
+ "access": "admin",
51543
+ "transport": [
51544
+ "http",
51545
+ "ws"
51546
+ ],
51547
+ "scopes": [
51548
+ "write:mcp"
51549
+ ],
51550
+ "http": {
51551
+ "method": "DELETE",
51552
+ "path": "/api/mcp/config/servers/{serverName}"
51553
+ },
51554
+ "events": [
51555
+ "runtime.mcp"
51556
+ ],
51557
+ "inputSchema": {
51558
+ "type": "object",
51559
+ "properties": {
51560
+ "serverName": {
51561
+ "type": "string"
51562
+ },
51563
+ "scope": {
51564
+ "type": "string",
51565
+ "enum": [
51566
+ "project",
51567
+ "global"
51568
+ ]
51569
+ }
51570
+ },
51571
+ "required": [
51572
+ "serverName"
51573
+ ],
51574
+ "additionalProperties": false
51575
+ },
51576
+ "outputSchema": {
51577
+ "type": "object",
51578
+ "properties": {
51579
+ "scope": {
51580
+ "type": "string",
51581
+ "enum": [
51582
+ "project",
51583
+ "global"
51584
+ ]
51585
+ },
51586
+ "path": {
51587
+ "type": "string"
51588
+ },
51589
+ "removed": {
51590
+ "type": "boolean"
51591
+ },
51592
+ "reload": {
51593
+ "type": "object",
51594
+ "properties": {
51595
+ "added": {
51596
+ "type": "number"
51597
+ },
51598
+ "changed": {
51599
+ "type": "number"
51600
+ },
51601
+ "removed": {
51602
+ "type": "number"
51603
+ },
51604
+ "unchanged": {
51605
+ "type": "number"
51606
+ },
51607
+ "servers": {
51608
+ "type": "array",
51609
+ "items": {
51610
+ "type": "object",
51611
+ "properties": {
51612
+ "name": {
51613
+ "type": "string"
51614
+ },
51615
+ "action": {
51616
+ "type": "string",
51617
+ "enum": [
51618
+ "added",
51619
+ "changed",
51620
+ "removed",
51621
+ "unchanged"
51622
+ ]
51623
+ },
51624
+ "connected": {
51625
+ "type": "boolean"
51626
+ }
51627
+ },
51628
+ "required": [
51629
+ "name",
51630
+ "action",
51631
+ "connected"
51632
+ ],
51633
+ "additionalProperties": false
51634
+ }
51635
+ }
51636
+ },
51637
+ "required": [
51638
+ "added",
51639
+ "changed",
51640
+ "removed",
51641
+ "unchanged",
51642
+ "servers"
51643
+ ],
51644
+ "additionalProperties": false
51645
+ },
51646
+ "config": {
51647
+ "type": "object",
51648
+ "properties": {
51649
+ "locations": {
51650
+ "type": "array",
51651
+ "items": {
51652
+ "type": "object",
51653
+ "properties": {
51654
+ "scope": {
51655
+ "type": "string"
51656
+ },
51657
+ "kind": {
51658
+ "type": "string"
51659
+ },
51660
+ "path": {
51661
+ "type": "string"
51662
+ },
51663
+ "writable": {
51664
+ "type": "boolean"
51665
+ }
51666
+ },
51667
+ "required": [
51668
+ "scope",
51669
+ "kind",
51670
+ "path",
51671
+ "writable"
51672
+ ],
51673
+ "additionalProperties": false
51674
+ }
51675
+ },
51676
+ "servers": {
51677
+ "type": "array",
51678
+ "items": {
51679
+ "type": "object",
51680
+ "properties": {
51681
+ "name": {
51682
+ "type": "string"
51683
+ },
51684
+ "command": {
51685
+ "type": "string"
51686
+ },
51687
+ "args": {
51688
+ "type": "array",
51689
+ "items": {
51690
+ "type": "string"
51691
+ }
51692
+ },
51693
+ "envKeys": {
51694
+ "type": "array",
51695
+ "items": {
51696
+ "type": "string"
51697
+ }
51698
+ },
51699
+ "role": {
51700
+ "anyOf": [
51701
+ {
51702
+ "type": "string"
51703
+ },
51704
+ {
51705
+ "type": "null"
51706
+ }
51707
+ ]
51708
+ },
51709
+ "trustMode": {
51710
+ "anyOf": [
51711
+ {
51712
+ "type": "string"
51713
+ },
51714
+ {
51715
+ "type": "null"
51716
+ }
51717
+ ]
51718
+ },
51719
+ "allowedPaths": {
51720
+ "type": "array",
51721
+ "items": {
51722
+ "type": "string"
51723
+ }
51724
+ },
51725
+ "allowedHosts": {
51726
+ "type": "array",
51727
+ "items": {
51728
+ "type": "string"
51729
+ }
51730
+ },
51731
+ "source": {
51732
+ "type": "object",
51733
+ "properties": {
51734
+ "scope": {
51735
+ "type": "string"
51736
+ },
51737
+ "kind": {
51738
+ "type": "string"
51739
+ },
51740
+ "path": {
51741
+ "type": "string"
51742
+ },
51743
+ "writable": {
51744
+ "type": "boolean"
51745
+ }
51746
+ },
51747
+ "required": [
51748
+ "scope",
51749
+ "kind",
51750
+ "path",
51751
+ "writable"
51752
+ ],
51753
+ "additionalProperties": false
51754
+ }
51755
+ },
51756
+ "required": [
51757
+ "name",
51758
+ "command",
51759
+ "args",
51760
+ "envKeys",
51761
+ "role",
51762
+ "trustMode",
51763
+ "allowedPaths",
51764
+ "allowedHosts",
51765
+ "source"
51766
+ ],
51767
+ "additionalProperties": false
51768
+ }
51769
+ }
51770
+ },
51771
+ "required": [
51772
+ "locations",
51773
+ "servers"
51774
+ ],
51775
+ "additionalProperties": false
51776
+ }
51777
+ },
51778
+ "required": [
51779
+ "scope",
51780
+ "path",
51781
+ "reload",
51782
+ "config"
51783
+ ],
51784
+ "additionalProperties": false
51785
+ },
51786
+ "invokable": true
51787
+ },
51788
+ {
51789
+ "id": "mcp.servers.upsert",
51790
+ "title": "Upsert MCP Server",
51791
+ "description": "Persist a project/global MCP server config and reconnect the changed runtime server without daemon restart.",
51792
+ "category": "mcp",
51793
+ "source": "builtin",
51794
+ "access": "admin",
51795
+ "transport": [
51796
+ "http",
51797
+ "ws"
51798
+ ],
51799
+ "scopes": [
51800
+ "write:mcp"
51801
+ ],
51802
+ "http": {
51803
+ "method": "POST",
51804
+ "path": "/api/mcp/config/servers"
51805
+ },
51806
+ "events": [
51807
+ "runtime.mcp"
51808
+ ],
51809
+ "inputSchema": {
51810
+ "type": "object",
51811
+ "properties": {
51812
+ "scope": {
51813
+ "type": "string",
51814
+ "enum": [
51815
+ "project",
51816
+ "global"
51817
+ ]
51818
+ },
51819
+ "server": {
51820
+ "type": "object",
51821
+ "properties": {
51822
+ "name": {
51823
+ "type": "string"
51824
+ },
51825
+ "command": {
51826
+ "type": "string"
51827
+ },
51828
+ "args": {
51829
+ "type": "array",
51830
+ "items": {
51831
+ "type": "string"
51832
+ }
51833
+ },
51834
+ "env": {
51835
+ "type": "object",
51836
+ "properties": {},
51837
+ "additionalProperties": true
51838
+ },
51839
+ "envKeys": {
51840
+ "type": "array",
51841
+ "items": {
51842
+ "type": "string"
51843
+ }
51844
+ },
51845
+ "role": {
51846
+ "anyOf": [
51847
+ {
51848
+ "type": "string"
51849
+ },
51850
+ {
51851
+ "type": "null"
51852
+ }
51853
+ ]
51854
+ },
51855
+ "trustMode": {
51856
+ "anyOf": [
51857
+ {
51858
+ "type": "string"
51859
+ },
51860
+ {
51861
+ "type": "null"
51862
+ }
51863
+ ]
51864
+ },
51865
+ "allowedPaths": {
51866
+ "type": "array",
51867
+ "items": {
51868
+ "type": "string"
51869
+ }
51870
+ },
51871
+ "allowedHosts": {
51872
+ "type": "array",
51873
+ "items": {
51874
+ "type": "string"
51875
+ }
51876
+ }
51877
+ },
51878
+ "required": [
51879
+ "name",
51880
+ "command"
51881
+ ],
51882
+ "additionalProperties": false
51883
+ }
51884
+ },
51885
+ "required": [
51886
+ "server"
51887
+ ],
51888
+ "additionalProperties": true
51889
+ },
51890
+ "outputSchema": {
51891
+ "type": "object",
51892
+ "properties": {
51893
+ "scope": {
51894
+ "type": "string",
51895
+ "enum": [
51896
+ "project",
51897
+ "global"
51898
+ ]
51899
+ },
51900
+ "path": {
51901
+ "type": "string"
51902
+ },
51903
+ "removed": {
51904
+ "type": "boolean"
51905
+ },
51906
+ "reload": {
51907
+ "type": "object",
51908
+ "properties": {
51909
+ "added": {
51910
+ "type": "number"
51911
+ },
51912
+ "changed": {
51913
+ "type": "number"
51914
+ },
51915
+ "removed": {
51916
+ "type": "number"
51917
+ },
51918
+ "unchanged": {
51919
+ "type": "number"
51920
+ },
51921
+ "servers": {
51922
+ "type": "array",
51923
+ "items": {
51924
+ "type": "object",
51925
+ "properties": {
51926
+ "name": {
51927
+ "type": "string"
51928
+ },
51929
+ "action": {
51930
+ "type": "string",
51931
+ "enum": [
51932
+ "added",
51933
+ "changed",
51934
+ "removed",
51935
+ "unchanged"
51936
+ ]
51937
+ },
51938
+ "connected": {
51939
+ "type": "boolean"
51940
+ }
51941
+ },
51942
+ "required": [
51943
+ "name",
51944
+ "action",
51945
+ "connected"
51946
+ ],
51947
+ "additionalProperties": false
51948
+ }
51949
+ }
51950
+ },
51951
+ "required": [
51952
+ "added",
51953
+ "changed",
51954
+ "removed",
51955
+ "unchanged",
51956
+ "servers"
51957
+ ],
51958
+ "additionalProperties": false
51959
+ },
51960
+ "config": {
51961
+ "type": "object",
51962
+ "properties": {
51963
+ "locations": {
51964
+ "type": "array",
51965
+ "items": {
51966
+ "type": "object",
51967
+ "properties": {
51968
+ "scope": {
51969
+ "type": "string"
51970
+ },
51971
+ "kind": {
51972
+ "type": "string"
51973
+ },
51974
+ "path": {
51975
+ "type": "string"
51976
+ },
51977
+ "writable": {
51978
+ "type": "boolean"
51979
+ }
51980
+ },
51981
+ "required": [
51982
+ "scope",
51983
+ "kind",
51984
+ "path",
51985
+ "writable"
51986
+ ],
51987
+ "additionalProperties": false
51988
+ }
51989
+ },
51990
+ "servers": {
51991
+ "type": "array",
51992
+ "items": {
51993
+ "type": "object",
51994
+ "properties": {
51995
+ "name": {
51996
+ "type": "string"
51997
+ },
51998
+ "command": {
51999
+ "type": "string"
52000
+ },
52001
+ "args": {
52002
+ "type": "array",
52003
+ "items": {
52004
+ "type": "string"
52005
+ }
52006
+ },
52007
+ "envKeys": {
52008
+ "type": "array",
52009
+ "items": {
52010
+ "type": "string"
52011
+ }
52012
+ },
52013
+ "role": {
52014
+ "anyOf": [
52015
+ {
52016
+ "type": "string"
52017
+ },
52018
+ {
52019
+ "type": "null"
52020
+ }
52021
+ ]
52022
+ },
52023
+ "trustMode": {
52024
+ "anyOf": [
52025
+ {
52026
+ "type": "string"
52027
+ },
52028
+ {
52029
+ "type": "null"
52030
+ }
52031
+ ]
52032
+ },
52033
+ "allowedPaths": {
52034
+ "type": "array",
52035
+ "items": {
52036
+ "type": "string"
52037
+ }
52038
+ },
52039
+ "allowedHosts": {
52040
+ "type": "array",
52041
+ "items": {
52042
+ "type": "string"
52043
+ }
52044
+ },
52045
+ "source": {
52046
+ "type": "object",
52047
+ "properties": {
52048
+ "scope": {
52049
+ "type": "string"
52050
+ },
52051
+ "kind": {
52052
+ "type": "string"
52053
+ },
52054
+ "path": {
52055
+ "type": "string"
52056
+ },
52057
+ "writable": {
52058
+ "type": "boolean"
52059
+ }
52060
+ },
52061
+ "required": [
52062
+ "scope",
52063
+ "kind",
52064
+ "path",
52065
+ "writable"
52066
+ ],
52067
+ "additionalProperties": false
52068
+ }
52069
+ },
52070
+ "required": [
52071
+ "name",
52072
+ "command",
52073
+ "args",
52074
+ "envKeys",
52075
+ "role",
52076
+ "trustMode",
52077
+ "allowedPaths",
52078
+ "allowedHosts",
52079
+ "source"
52080
+ ],
52081
+ "additionalProperties": false
52082
+ }
52083
+ }
52084
+ },
52085
+ "required": [
52086
+ "locations",
52087
+ "servers"
52088
+ ],
52089
+ "additionalProperties": false
52090
+ }
52091
+ },
52092
+ "required": [
52093
+ "scope",
52094
+ "path",
52095
+ "reload",
52096
+ "config"
52097
+ ],
52098
+ "additionalProperties": false
52099
+ },
52100
+ "invokable": true
52101
+ },
52102
+ {
52103
+ "id": "mcp.tools.list",
52104
+ "title": "MCP Tools List",
52105
+ "description": "Return currently connected MCP tools.",
52106
+ "category": "mcp",
52107
+ "source": "builtin",
52108
+ "access": "authenticated",
52109
+ "transport": [
52110
+ "http",
52111
+ "ws"
52112
+ ],
52113
+ "scopes": [
52114
+ "read:mcp"
52115
+ ],
52116
+ "http": {
52117
+ "method": "GET",
52118
+ "path": "/api/mcp/tools"
52119
+ },
52120
+ "events": [
52121
+ "runtime.mcp"
52122
+ ],
52123
+ "inputSchema": {
52124
+ "type": "object",
52125
+ "properties": {},
52126
+ "additionalProperties": false
52127
+ },
52128
+ "outputSchema": {
52129
+ "type": "object",
52130
+ "properties": {
52131
+ "tools": {
52132
+ "type": "array",
52133
+ "items": {
52134
+ "type": "object",
52135
+ "properties": {
52136
+ "qualifiedName": {
52137
+ "type": "string"
52138
+ },
52139
+ "serverName": {
52140
+ "type": "string"
52141
+ },
52142
+ "toolName": {
52143
+ "type": "string"
52144
+ },
52145
+ "description": {
52146
+ "type": "string"
52147
+ }
52148
+ },
52149
+ "required": [
52150
+ "qualifiedName",
52151
+ "serverName",
52152
+ "toolName",
52153
+ "description"
52154
+ ],
52155
+ "additionalProperties": false
52156
+ }
52157
+ }
52158
+ },
52159
+ "required": [
52160
+ "tools"
52161
+ ],
52162
+ "additionalProperties": false
52163
+ },
52164
+ "invokable": true
52165
+ },
51080
52166
  {
51081
52167
  "id": "media.analyze",
51082
52168
  "title": "Analyze Media Artifact",
@@ -73872,10 +74958,10 @@
73872
74958
  }
73873
74959
  ],
73874
74960
  "schemaCoverage": {
73875
- "methods": 273,
73876
- "typedInputs": 273,
74961
+ "methods": 279,
74962
+ "typedInputs": 279,
73877
74963
  "genericInputs": 0,
73878
- "typedOutputs": 273,
74964
+ "typedOutputs": 279,
73879
74965
  "genericOutputs": 0
73880
74966
  },
73881
74967
  "eventCoverage": {