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