@rudderhq/agent-runtime-utils 0.4.6-canary.8 → 0.5.0

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 (48) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/rudder-mcp-contract.d.ts +1028 -0
  6. package/dist/rudder-mcp-contract.d.ts.map +1 -0
  7. package/dist/rudder-mcp-contract.js +257 -0
  8. package/dist/rudder-mcp-contract.js.map +1 -0
  9. package/dist/rudder-mcp-fingerprint.d.ts +4 -0
  10. package/dist/rudder-mcp-fingerprint.d.ts.map +1 -0
  11. package/dist/rudder-mcp-fingerprint.js +23 -0
  12. package/dist/rudder-mcp-fingerprint.js.map +1 -0
  13. package/dist/rudder-mcp-preflight.d.ts +12 -0
  14. package/dist/rudder-mcp-preflight.d.ts.map +1 -0
  15. package/dist/rudder-mcp-preflight.js +324 -0
  16. package/dist/rudder-mcp-preflight.js.map +1 -0
  17. package/dist/rudder-mcp-preflight.test.d.ts +2 -0
  18. package/dist/rudder-mcp-preflight.test.d.ts.map +1 -0
  19. package/dist/rudder-mcp-preflight.test.js +315 -0
  20. package/dist/rudder-mcp-preflight.test.js.map +1 -0
  21. package/dist/rudder-mcp-server.d.ts.map +1 -1
  22. package/dist/rudder-mcp-server.js +3 -0
  23. package/dist/rudder-mcp-server.js.map +1 -1
  24. package/dist/rudder-mcp-tool-descriptors.generated.d.ts +620 -0
  25. package/dist/rudder-mcp-tool-descriptors.generated.d.ts.map +1 -0
  26. package/dist/rudder-mcp-tool-descriptors.generated.js +699 -0
  27. package/dist/rudder-mcp-tool-descriptors.generated.js.map +1 -0
  28. package/dist/rudder-mcp.d.ts +32 -2
  29. package/dist/rudder-mcp.d.ts.map +1 -1
  30. package/dist/rudder-mcp.js +28 -9
  31. package/dist/rudder-mcp.js.map +1 -1
  32. package/dist/rudder-mcp.test.js +38 -2
  33. package/dist/rudder-mcp.test.js.map +1 -1
  34. package/dist/server-utils.cli.d.ts +41 -3
  35. package/dist/server-utils.cli.d.ts.map +1 -1
  36. package/dist/server-utils.cli.js +307 -23
  37. package/dist/server-utils.cli.js.map +1 -1
  38. package/dist/server-utils.prompts.d.ts +8 -6
  39. package/dist/server-utils.prompts.d.ts.map +1 -1
  40. package/dist/server-utils.prompts.js +77 -24
  41. package/dist/server-utils.prompts.js.map +1 -1
  42. package/dist/server-utils.prompts.test.js +97 -1
  43. package/dist/server-utils.prompts.test.js.map +1 -1
  44. package/dist/server-utils.test.js +582 -5
  45. package/dist/server-utils.test.js.map +1 -1
  46. package/dist/types.d.ts +58 -0
  47. package/dist/types.d.ts.map +1 -1
  48. package/package.json +1 -1
@@ -0,0 +1,699 @@
1
+ // Generated by scripts/generate-rudder-mcp-tool-descriptors.ts. Do not edit by hand.
2
+ export const RUDDER_MCP_TOOL_DESCRIPTORS = [
3
+ {
4
+ "capabilityId": "agent.me",
5
+ "name": "rudder_agent_me",
6
+ "description": "Show the authenticated agent identity, budget, and chain of command.",
7
+ "mutating": false,
8
+ "requiresOrgId": false,
9
+ "requiresAgentId": false,
10
+ "attachesRunIdWhenAvailable": false
11
+ },
12
+ {
13
+ "capabilityId": "agent.inbox",
14
+ "name": "rudder_agent_inbox",
15
+ "description": "List the compact assignee and reviewer work inbox for the authenticated agent.",
16
+ "mutating": false,
17
+ "requiresOrgId": false,
18
+ "requiresAgentId": false,
19
+ "attachesRunIdWhenAvailable": false
20
+ },
21
+ {
22
+ "capabilityId": "agent.capabilities",
23
+ "name": "rudder_agent_capabilities",
24
+ "description": "List the stable Rudder agent command contract.",
25
+ "mutating": false,
26
+ "requiresOrgId": false,
27
+ "requiresAgentId": false,
28
+ "attachesRunIdWhenAvailable": false
29
+ },
30
+ {
31
+ "capabilityId": "agent.update",
32
+ "name": "rudder_agent_update",
33
+ "description": "Update an agent's control-plane identity fields; defaults to the authenticated agent.",
34
+ "mutating": true,
35
+ "requiresOrgId": false,
36
+ "requiresAgentId": false,
37
+ "attachesRunIdWhenAvailable": true
38
+ },
39
+ {
40
+ "capabilityId": "agent.skills.create",
41
+ "name": "rudder_agent_skills_create",
42
+ "description": "Create an agent-private skill package under AGENT_HOME/skills.",
43
+ "mutating": true,
44
+ "requiresOrgId": false,
45
+ "requiresAgentId": false,
46
+ "attachesRunIdWhenAvailable": true
47
+ },
48
+ {
49
+ "capabilityId": "agent.skills.enable",
50
+ "name": "rudder_agent_skills_enable",
51
+ "description": "Add skill selections to an agent without replacing existing enabled skills.",
52
+ "mutating": true,
53
+ "requiresOrgId": false,
54
+ "requiresAgentId": false,
55
+ "attachesRunIdWhenAvailable": true
56
+ },
57
+ {
58
+ "capabilityId": "agent.skills.sync",
59
+ "name": "rudder_agent_skills_sync",
60
+ "description": "Sync the desired enabled skill set for an agent.",
61
+ "mutating": true,
62
+ "requiresOrgId": false,
63
+ "requiresAgentId": false,
64
+ "attachesRunIdWhenAvailable": true
65
+ },
66
+ {
67
+ "capabilityId": "issue.get",
68
+ "name": "rudder_issue_get",
69
+ "description": "Read a full issue by UUID or identifier.",
70
+ "mutating": false,
71
+ "requiresOrgId": false,
72
+ "requiresAgentId": false,
73
+ "attachesRunIdWhenAvailable": false
74
+ },
75
+ {
76
+ "capabilityId": "issue.search",
77
+ "name": "rudder_issue_search",
78
+ "description": "Search issues with the server-side issue index across title, identifier, description, and comments.",
79
+ "mutating": false,
80
+ "requiresOrgId": true,
81
+ "requiresAgentId": false,
82
+ "attachesRunIdWhenAvailable": false
83
+ },
84
+ {
85
+ "capabilityId": "issue.context",
86
+ "name": "rudder_issue_context",
87
+ "description": "Read the compact heartbeat context for an issue; wake comments may be addressed by full id or cmt_<uuid-prefix>.",
88
+ "mutating": false,
89
+ "requiresOrgId": false,
90
+ "requiresAgentId": false,
91
+ "attachesRunIdWhenAvailable": false
92
+ },
93
+ {
94
+ "capabilityId": "issue.checkout",
95
+ "name": "rudder_issue_checkout",
96
+ "description": "Atomically checkout an issue for the current or specified agent.",
97
+ "mutating": true,
98
+ "requiresOrgId": false,
99
+ "requiresAgentId": true,
100
+ "attachesRunIdWhenAvailable": true
101
+ },
102
+ {
103
+ "capabilityId": "issue.comment",
104
+ "name": "rudder_issue_comment",
105
+ "description": "Add a comment to an issue, optionally uploading images and appending Markdown image links.",
106
+ "mutating": true,
107
+ "requiresOrgId": false,
108
+ "requiresAgentId": false,
109
+ "attachesRunIdWhenAvailable": true
110
+ },
111
+ {
112
+ "capabilityId": "issue.comments.list",
113
+ "name": "rudder_issue_comments_list",
114
+ "description": "List issue comments, optionally only newer comments after a full comment id or cmt_<uuid-prefix> with --after.",
115
+ "mutating": false,
116
+ "requiresOrgId": false,
117
+ "requiresAgentId": false,
118
+ "attachesRunIdWhenAvailable": false
119
+ },
120
+ {
121
+ "capabilityId": "issue.comments.get",
122
+ "name": "rudder_issue_comments_get",
123
+ "description": "Read one issue comment by full id or cmt_<uuid-prefix> scoped to the issue.",
124
+ "mutating": false,
125
+ "requiresOrgId": false,
126
+ "requiresAgentId": false,
127
+ "attachesRunIdWhenAvailable": false
128
+ },
129
+ {
130
+ "capabilityId": "issue.update",
131
+ "name": "rudder_issue_update",
132
+ "description": "Apply generic issue updates when workflow commands are not enough, optionally uploading images for the update comment.",
133
+ "mutating": true,
134
+ "requiresOrgId": false,
135
+ "requiresAgentId": false,
136
+ "attachesRunIdWhenAvailable": true
137
+ },
138
+ {
139
+ "capabilityId": "issue.review",
140
+ "name": "rudder_issue_review",
141
+ "description": "Record a structured reviewer decision with a required comment.",
142
+ "mutating": true,
143
+ "requiresOrgId": false,
144
+ "requiresAgentId": false,
145
+ "attachesRunIdWhenAvailable": true
146
+ },
147
+ {
148
+ "capabilityId": "issue.commit",
149
+ "name": "rudder_issue_commit",
150
+ "description": "Report a code commit created during issue work as structured issue activity.",
151
+ "mutating": true,
152
+ "requiresOrgId": false,
153
+ "requiresAgentId": false,
154
+ "attachesRunIdWhenAvailable": true
155
+ },
156
+ {
157
+ "capabilityId": "issue.done",
158
+ "name": "rudder_issue_done",
159
+ "description": "Mark an issue done with a required completion comment, optionally uploading images.",
160
+ "mutating": true,
161
+ "requiresOrgId": false,
162
+ "requiresAgentId": false,
163
+ "attachesRunIdWhenAvailable": true
164
+ },
165
+ {
166
+ "capabilityId": "issue.block",
167
+ "name": "rudder_issue_block",
168
+ "description": "Mark an issue blocked with a required blocker comment, optionally uploading images.",
169
+ "mutating": true,
170
+ "requiresOrgId": false,
171
+ "requiresAgentId": false,
172
+ "attachesRunIdWhenAvailable": true
173
+ },
174
+ {
175
+ "capabilityId": "project.list",
176
+ "name": "rudder_project_list",
177
+ "description": "List projects in an organization.",
178
+ "mutating": false,
179
+ "requiresOrgId": true,
180
+ "requiresAgentId": false,
181
+ "attachesRunIdWhenAvailable": false
182
+ },
183
+ {
184
+ "capabilityId": "project.get",
185
+ "name": "rudder_project_get",
186
+ "description": "Read one project by ID or shortname.",
187
+ "mutating": false,
188
+ "requiresOrgId": false,
189
+ "requiresAgentId": false,
190
+ "attachesRunIdWhenAvailable": false
191
+ },
192
+ {
193
+ "capabilityId": "project.create",
194
+ "name": "rudder_project_create",
195
+ "description": "Create a project in the organization.",
196
+ "mutating": true,
197
+ "requiresOrgId": true,
198
+ "requiresAgentId": false,
199
+ "attachesRunIdWhenAvailable": true
200
+ },
201
+ {
202
+ "capabilityId": "project.update",
203
+ "name": "rudder_project_update",
204
+ "description": "Update mutable project fields such as name, description, status, goals, lead agent, target date, color, or archivedAt.",
205
+ "mutating": true,
206
+ "requiresOrgId": false,
207
+ "requiresAgentId": false,
208
+ "attachesRunIdWhenAvailable": true
209
+ },
210
+ {
211
+ "capabilityId": "user.activity",
212
+ "name": "rudder_user_activity",
213
+ "description": "Read a user-centered activity ledger with safe excerpts and provenance across chats, issue comments, approval comments, and user actor activity.",
214
+ "mutating": false,
215
+ "requiresOrgId": true,
216
+ "requiresAgentId": false,
217
+ "attachesRunIdWhenAvailable": false
218
+ },
219
+ {
220
+ "capabilityId": "library.file.list",
221
+ "name": "rudder_library_file_list",
222
+ "description": "List Library files and folders; file rows include `libraryEntryId` when a strong reference can be generated.",
223
+ "mutating": false,
224
+ "requiresOrgId": true,
225
+ "requiresAgentId": false,
226
+ "attachesRunIdWhenAvailable": false
227
+ },
228
+ {
229
+ "capabilityId": "library.file.get",
230
+ "name": "rudder_library_file_get",
231
+ "description": "Fallback read when local filesystem access is unavailable; JSON includes `mentionHref` and `markdownLink`.",
232
+ "mutating": false,
233
+ "requiresOrgId": true,
234
+ "requiresAgentId": false,
235
+ "attachesRunIdWhenAvailable": false
236
+ },
237
+ {
238
+ "capabilityId": "library.file.ref",
239
+ "name": "rudder_library_file_ref",
240
+ "description": "Return the stable Markdown reference for one Library file without printing file content.",
241
+ "mutating": false,
242
+ "requiresOrgId": true,
243
+ "requiresAgentId": false,
244
+ "attachesRunIdWhenAvailable": false
245
+ },
246
+ {
247
+ "capabilityId": "library.file.link",
248
+ "name": "rudder_library_file_link",
249
+ "description": "Compatibility alias for `rudder library file ref <path>`.",
250
+ "mutating": false,
251
+ "requiresOrgId": true,
252
+ "requiresAgentId": false,
253
+ "attachesRunIdWhenAvailable": false
254
+ },
255
+ {
256
+ "capabilityId": "library.file.put",
257
+ "name": "rudder_library_file_put",
258
+ "description": "Fallback create/update when local filesystem access is unavailable; JSON includes `mentionHref` and `markdownLink`.",
259
+ "mutating": true,
260
+ "requiresOrgId": true,
261
+ "requiresAgentId": false,
262
+ "attachesRunIdWhenAvailable": true
263
+ },
264
+ {
265
+ "capabilityId": "approval.get",
266
+ "name": "rudder_approval_get",
267
+ "description": "Read one approval request.",
268
+ "mutating": false,
269
+ "requiresOrgId": false,
270
+ "requiresAgentId": false,
271
+ "attachesRunIdWhenAvailable": false
272
+ },
273
+ {
274
+ "capabilityId": "approval.issues",
275
+ "name": "rudder_approval_issues",
276
+ "description": "List the issues linked to an approval.",
277
+ "mutating": false,
278
+ "requiresOrgId": false,
279
+ "requiresAgentId": false,
280
+ "attachesRunIdWhenAvailable": false
281
+ },
282
+ {
283
+ "capabilityId": "approval.comment",
284
+ "name": "rudder_approval_comment",
285
+ "description": "Add a comment to an approval.",
286
+ "mutating": true,
287
+ "requiresOrgId": false,
288
+ "requiresAgentId": false,
289
+ "attachesRunIdWhenAvailable": true
290
+ },
291
+ {
292
+ "capabilityId": "skill.list",
293
+ "name": "rudder_skill_list",
294
+ "description": "List organization-visible skills.",
295
+ "mutating": false,
296
+ "requiresOrgId": true,
297
+ "requiresAgentId": false,
298
+ "attachesRunIdWhenAvailable": false
299
+ },
300
+ {
301
+ "capabilityId": "skill.get",
302
+ "name": "rudder_skill_get",
303
+ "description": "Read one organization skill detail.",
304
+ "mutating": false,
305
+ "requiresOrgId": true,
306
+ "requiresAgentId": false,
307
+ "attachesRunIdWhenAvailable": false
308
+ },
309
+ {
310
+ "capabilityId": "skill.file",
311
+ "name": "rudder_skill_file",
312
+ "description": "Read one file from an organization skill package.",
313
+ "mutating": false,
314
+ "requiresOrgId": true,
315
+ "requiresAgentId": false,
316
+ "attachesRunIdWhenAvailable": false
317
+ },
318
+ {
319
+ "capabilityId": "skill.import",
320
+ "name": "rudder_skill_import",
321
+ "description": "Import a skill package into the organization skill library.",
322
+ "mutating": true,
323
+ "requiresOrgId": true,
324
+ "requiresAgentId": false,
325
+ "attachesRunIdWhenAvailable": true
326
+ },
327
+ {
328
+ "capabilityId": "skill.scan-local",
329
+ "name": "rudder_skill_scan_local",
330
+ "description": "Scan local roots for skill packages and import new ones.",
331
+ "mutating": true,
332
+ "requiresOrgId": true,
333
+ "requiresAgentId": false,
334
+ "attachesRunIdWhenAvailable": true
335
+ },
336
+ {
337
+ "capabilityId": "skill.scan-projects",
338
+ "name": "rudder_skill_scan_projects",
339
+ "description": "Scan the org workspace and any legacy project workspace records for skill packages and import new ones.",
340
+ "mutating": true,
341
+ "requiresOrgId": true,
342
+ "requiresAgentId": false,
343
+ "attachesRunIdWhenAvailable": true
344
+ },
345
+ {
346
+ "capabilityId": "browser.tabs",
347
+ "name": "rudder_browser_tabs",
348
+ "description": "List Browser tabs owned by the current Rudder agent run.",
349
+ "mutating": false,
350
+ "requiresOrgId": true,
351
+ "requiresAgentId": true,
352
+ "attachesRunIdWhenAvailable": false
353
+ },
354
+ {
355
+ "capabilityId": "browser.open",
356
+ "name": "rudder_browser_open",
357
+ "description": "Open a run-owned tab in the Rudder Browser.",
358
+ "mutating": true,
359
+ "requiresOrgId": true,
360
+ "requiresAgentId": true,
361
+ "attachesRunIdWhenAvailable": true
362
+ },
363
+ {
364
+ "capabilityId": "browser.navigate",
365
+ "name": "rudder_browser_navigate",
366
+ "description": "Navigate a run-owned Rudder Browser tab.",
367
+ "mutating": true,
368
+ "requiresOrgId": true,
369
+ "requiresAgentId": true,
370
+ "attachesRunIdWhenAvailable": true
371
+ },
372
+ {
373
+ "capabilityId": "browser.read",
374
+ "name": "rudder_browser_read",
375
+ "description": "Read a structured snapshot from a run-owned Rudder Browser tab.",
376
+ "mutating": false,
377
+ "requiresOrgId": true,
378
+ "requiresAgentId": true,
379
+ "attachesRunIdWhenAvailable": false
380
+ },
381
+ {
382
+ "capabilityId": "browser.click",
383
+ "name": "rudder_browser_click",
384
+ "description": "Click an element reference returned by Rudder Browser read.",
385
+ "mutating": true,
386
+ "requiresOrgId": true,
387
+ "requiresAgentId": true,
388
+ "attachesRunIdWhenAvailable": true
389
+ },
390
+ {
391
+ "capabilityId": "browser.type",
392
+ "name": "rudder_browser_type",
393
+ "description": "Type into an element reference in a run-owned Rudder Browser tab.",
394
+ "mutating": true,
395
+ "requiresOrgId": true,
396
+ "requiresAgentId": true,
397
+ "attachesRunIdWhenAvailable": true
398
+ },
399
+ {
400
+ "capabilityId": "browser.screenshot",
401
+ "name": "rudder_browser_screenshot",
402
+ "description": "Capture a screenshot of a run-owned Rudder Browser tab.",
403
+ "mutating": false,
404
+ "requiresOrgId": true,
405
+ "requiresAgentId": true,
406
+ "attachesRunIdWhenAvailable": false
407
+ },
408
+ {
409
+ "capabilityId": "browser.close",
410
+ "name": "rudder_browser_close",
411
+ "description": "Close a run-owned Rudder Browser tab.",
412
+ "mutating": true,
413
+ "requiresOrgId": true,
414
+ "requiresAgentId": true,
415
+ "attachesRunIdWhenAvailable": true
416
+ },
417
+ {
418
+ "capabilityId": "automation.list",
419
+ "name": "rudder_automation_list",
420
+ "description": "List automations for an organization with compact local filters.",
421
+ "mutating": false,
422
+ "requiresOrgId": true,
423
+ "requiresAgentId": false,
424
+ "attachesRunIdWhenAvailable": false
425
+ },
426
+ {
427
+ "capabilityId": "automation.get",
428
+ "name": "rudder_automation_get",
429
+ "description": "Read one automation detail including triggers and recent runs.",
430
+ "mutating": false,
431
+ "requiresOrgId": false,
432
+ "requiresAgentId": false,
433
+ "attachesRunIdWhenAvailable": false
434
+ },
435
+ {
436
+ "capabilityId": "automation.runs",
437
+ "name": "rudder_automation_runs",
438
+ "description": "List recent runs for one automation.",
439
+ "mutating": false,
440
+ "requiresOrgId": false,
441
+ "requiresAgentId": false,
442
+ "attachesRunIdWhenAvailable": false
443
+ },
444
+ {
445
+ "capabilityId": "automation.triggers.list",
446
+ "name": "rudder_automation_triggers_list",
447
+ "description": "List triggers configured for one automation.",
448
+ "mutating": false,
449
+ "requiresOrgId": false,
450
+ "requiresAgentId": false,
451
+ "attachesRunIdWhenAvailable": false
452
+ },
453
+ {
454
+ "capabilityId": "automation.triggers.create",
455
+ "name": "rudder_automation_triggers_create",
456
+ "description": "Create a schedule, webhook, or API trigger through the governed automation API.",
457
+ "mutating": true,
458
+ "requiresOrgId": false,
459
+ "requiresAgentId": false,
460
+ "attachesRunIdWhenAvailable": true
461
+ },
462
+ {
463
+ "capabilityId": "automation.triggers.update",
464
+ "name": "rudder_automation_triggers_update",
465
+ "description": "Update an automation trigger through the governed automation API.",
466
+ "mutating": true,
467
+ "requiresOrgId": false,
468
+ "requiresAgentId": false,
469
+ "attachesRunIdWhenAvailable": true
470
+ },
471
+ {
472
+ "capabilityId": "automation.triggers.delete",
473
+ "name": "rudder_automation_triggers_delete",
474
+ "description": "Delete an automation trigger through the governed automation API.",
475
+ "mutating": true,
476
+ "requiresOrgId": false,
477
+ "requiresAgentId": false,
478
+ "attachesRunIdWhenAvailable": true
479
+ },
480
+ {
481
+ "capabilityId": "automation.triggers.rotate-secret",
482
+ "name": "rudder_automation_triggers_rotate_secret",
483
+ "description": "Rotate an automation webhook trigger secret through the governed automation API.",
484
+ "mutating": true,
485
+ "requiresOrgId": false,
486
+ "requiresAgentId": false,
487
+ "attachesRunIdWhenAvailable": true
488
+ },
489
+ {
490
+ "capabilityId": "automation.create",
491
+ "name": "rudder_automation_create",
492
+ "description": "Create an automation through the governed automation API.",
493
+ "mutating": true,
494
+ "requiresOrgId": true,
495
+ "requiresAgentId": false,
496
+ "attachesRunIdWhenAvailable": true
497
+ },
498
+ {
499
+ "capabilityId": "automation.update",
500
+ "name": "rudder_automation_update",
501
+ "description": "Update automation fields through the governed automation API.",
502
+ "mutating": true,
503
+ "requiresOrgId": false,
504
+ "requiresAgentId": false,
505
+ "attachesRunIdWhenAvailable": true
506
+ },
507
+ {
508
+ "capabilityId": "automation.enable",
509
+ "name": "rudder_automation_enable",
510
+ "description": "Enable an automation by setting status to active.",
511
+ "mutating": true,
512
+ "requiresOrgId": false,
513
+ "requiresAgentId": false,
514
+ "attachesRunIdWhenAvailable": true
515
+ },
516
+ {
517
+ "capabilityId": "automation.disable",
518
+ "name": "rudder_automation_disable",
519
+ "description": "Disable an automation by setting status to paused.",
520
+ "mutating": true,
521
+ "requiresOrgId": false,
522
+ "requiresAgentId": false,
523
+ "attachesRunIdWhenAvailable": true
524
+ },
525
+ {
526
+ "capabilityId": "automation.run",
527
+ "name": "rudder_automation_run",
528
+ "description": "Trigger a manual automation run.",
529
+ "mutating": true,
530
+ "requiresOrgId": false,
531
+ "requiresAgentId": false,
532
+ "attachesRunIdWhenAvailable": true
533
+ },
534
+ {
535
+ "capabilityId": "chat.list",
536
+ "name": "rudder_chat_list",
537
+ "description": "List chat conversations without dumping full message history.",
538
+ "mutating": false,
539
+ "requiresOrgId": true,
540
+ "requiresAgentId": false,
541
+ "attachesRunIdWhenAvailable": false
542
+ },
543
+ {
544
+ "capabilityId": "chat.search",
545
+ "name": "rudder_chat_search",
546
+ "description": "Search chats with bounded snippets and optional scope filtering.",
547
+ "mutating": false,
548
+ "requiresOrgId": true,
549
+ "requiresAgentId": false,
550
+ "attachesRunIdWhenAvailable": false
551
+ },
552
+ {
553
+ "capabilityId": "chat.get",
554
+ "name": "rudder_chat_get",
555
+ "description": "Read one chat conversation record.",
556
+ "mutating": false,
557
+ "requiresOrgId": false,
558
+ "requiresAgentId": false,
559
+ "attachesRunIdWhenAvailable": false
560
+ },
561
+ {
562
+ "capabilityId": "chat.messages",
563
+ "name": "rudder_chat_messages",
564
+ "description": "Read bounded chat messages with page cursors; transcript output is omitted unless requested.",
565
+ "mutating": false,
566
+ "requiresOrgId": false,
567
+ "requiresAgentId": false,
568
+ "attachesRunIdWhenAvailable": false
569
+ },
570
+ {
571
+ "capabilityId": "chat.transcript",
572
+ "name": "rudder_chat_transcript",
573
+ "description": "Read paginated chat messages with assistant transcript entries clipped in human output.",
574
+ "mutating": false,
575
+ "requiresOrgId": false,
576
+ "requiresAgentId": false,
577
+ "attachesRunIdWhenAvailable": false
578
+ },
579
+ {
580
+ "capabilityId": "chat.read",
581
+ "name": "rudder_chat_read",
582
+ "description": "Read a bounded recent-message snapshot for one chat with page cursors.",
583
+ "mutating": false,
584
+ "requiresOrgId": false,
585
+ "requiresAgentId": false,
586
+ "attachesRunIdWhenAvailable": false
587
+ },
588
+ {
589
+ "capabilityId": "chat.create",
590
+ "name": "rudder_chat_create",
591
+ "description": "Create a chat conversation.",
592
+ "mutating": true,
593
+ "requiresOrgId": true,
594
+ "requiresAgentId": false,
595
+ "attachesRunIdWhenAvailable": true
596
+ },
597
+ {
598
+ "capabilityId": "chat.send",
599
+ "name": "rudder_chat_send",
600
+ "description": "Send an agent-authored message directly to the operator in a chat.",
601
+ "mutating": true,
602
+ "requiresOrgId": false,
603
+ "requiresAgentId": true,
604
+ "attachesRunIdWhenAvailable": true
605
+ },
606
+ {
607
+ "capabilityId": "chat.archive",
608
+ "name": "rudder_chat_archive",
609
+ "description": "Archive a chat conversation without deleting it.",
610
+ "mutating": true,
611
+ "requiresOrgId": false,
612
+ "requiresAgentId": false,
613
+ "attachesRunIdWhenAvailable": true
614
+ },
615
+ {
616
+ "capabilityId": "runs.list",
617
+ "name": "rudder_runs_list",
618
+ "description": "List lightweight run summaries with stable pagination and filters; use --full only for legacy full-row compatibility.",
619
+ "mutating": false,
620
+ "requiresOrgId": true,
621
+ "requiresAgentId": false,
622
+ "attachesRunIdWhenAvailable": false
623
+ },
624
+ {
625
+ "capabilityId": "runs.by-skill",
626
+ "name": "rudder_runs_by_skill",
627
+ "description": "Build a paginated skill evidence packet from lightweight run summaries; use --full only for legacy full-row compatibility.",
628
+ "mutating": false,
629
+ "requiresOrgId": true,
630
+ "requiresAgentId": false,
631
+ "attachesRunIdWhenAvailable": false
632
+ },
633
+ {
634
+ "capabilityId": "runs.get",
635
+ "name": "rudder_runs_get",
636
+ "description": "Read one bounded run summary; use --full only from a direct trusted CLI for raw detail.",
637
+ "mutating": false,
638
+ "requiresOrgId": false,
639
+ "requiresAgentId": false,
640
+ "attachesRunIdWhenAvailable": false
641
+ },
642
+ {
643
+ "capabilityId": "runs.events",
644
+ "name": "rudder_runs_events",
645
+ "description": "List a bounded page of persisted run events with a lossless opaque cursor and clipped payload previews.",
646
+ "mutating": false,
647
+ "requiresOrgId": false,
648
+ "requiresAgentId": false,
649
+ "attachesRunIdWhenAvailable": false
650
+ },
651
+ {
652
+ "capabilityId": "runs.log",
653
+ "name": "rudder_runs_log",
654
+ "description": "Read a bounded byte range of stored run log content.",
655
+ "mutating": false,
656
+ "requiresOrgId": false,
657
+ "requiresAgentId": false,
658
+ "attachesRunIdWhenAvailable": false
659
+ },
660
+ {
661
+ "capabilityId": "runs.transcript",
662
+ "name": "rudder_runs_transcript",
663
+ "description": "Read a compact server-normalized transcript; --json changes encoding only and --full is direct-CLI-only raw access.",
664
+ "mutating": false,
665
+ "requiresOrgId": false,
666
+ "requiresAgentId": false,
667
+ "attachesRunIdWhenAvailable": false
668
+ },
669
+ {
670
+ "capabilityId": "runs.errors",
671
+ "name": "rudder_runs_errors",
672
+ "description": "List failed tool calls, stderr, runtime failures, and jump-to-context commands.",
673
+ "mutating": false,
674
+ "requiresOrgId": false,
675
+ "requiresAgentId": false,
676
+ "attachesRunIdWhenAvailable": false
677
+ },
678
+ {
679
+ "capabilityId": "runs.cancel",
680
+ "name": "rudder_runs_cancel",
681
+ "description": "Cancel a heartbeat run through the governed server route.",
682
+ "mutating": true,
683
+ "requiresOrgId": false,
684
+ "requiresAgentId": false,
685
+ "attachesRunIdWhenAvailable": true
686
+ },
687
+ {
688
+ "capabilityId": "runs.retry",
689
+ "name": "rudder_runs_retry",
690
+ "description": "Retry a failed, timed out, or cancelled run through the governed server route.",
691
+ "mutating": true,
692
+ "requiresOrgId": false,
693
+ "requiresAgentId": false,
694
+ "attachesRunIdWhenAvailable": true
695
+ }
696
+ ];
697
+ export const GENERATED_RUDDER_CORE_MCP_CONTRACT_HASH = "85436ea9893ad336e449cef31a0d43ee34387e5955e836578f27828d2e576e17";
698
+ export const GENERATED_RUDDER_BROWSER_MCP_CONTRACT_HASH = "c4d41b5aaa22d76e528877c17cee84e0fb363b38ebe9d2ff4e1c36a46edecfbe";
699
+ //# sourceMappingURL=rudder-mcp-tool-descriptors.generated.js.map