@dobbyai/mcp-external 1.0.1 → 1.0.3
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/README.md +67 -14
- package/dist/__tests__/tools/services.test.d.ts +2 -0
- package/dist/__tests__/tools/services.test.d.ts.map +1 -0
- package/dist/__tests__/tools/services.test.js +223 -0
- package/dist/__tests__/tools/services.test.js.map +1 -0
- package/dist/lib/dobby-client.d.ts +9 -0
- package/dist/lib/dobby-client.d.ts.map +1 -1
- package/dist/lib/dobby-client.js +37 -0
- package/dist/lib/dobby-client.js.map +1 -1
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/resources/index.js +27 -0
- package/dist/resources/index.js.map +1 -1
- package/dist/tools/crew-builder.d.ts +165 -0
- package/dist/tools/crew-builder.d.ts.map +1 -0
- package/dist/tools/crew-builder.js +306 -0
- package/dist/tools/crew-builder.js.map +1 -0
- package/dist/tools/crewai.d.ts +140 -0
- package/dist/tools/crewai.d.ts.map +1 -0
- package/dist/tools/crewai.js +226 -0
- package/dist/tools/crewai.js.map +1 -0
- package/dist/tools/index.d.ts +453 -0
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +83 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/jira.d.ts +437 -0
- package/dist/tools/jira.d.ts.map +1 -0
- package/dist/tools/jira.js +628 -0
- package/dist/tools/jira.js.map +1 -0
- package/dist/tools/mcp-tools.d.ts +90 -0
- package/dist/tools/mcp-tools.d.ts.map +1 -0
- package/dist/tools/mcp-tools.js +203 -0
- package/dist/tools/mcp-tools.js.map +1 -0
- package/dist/tools/services.d.ts +38 -0
- package/dist/tools/services.d.ts.map +1 -0
- package/dist/tools/services.js +166 -0
- package/dist/tools/services.js.map +1 -0
- package/package.json +1 -1
package/dist/tools/index.js
CHANGED
|
@@ -7,9 +7,19 @@
|
|
|
7
7
|
export * from './tasks.js';
|
|
8
8
|
export * from './messages.js';
|
|
9
9
|
export * from './approvals.js';
|
|
10
|
+
export * from './services.js';
|
|
11
|
+
export * from './crewai.js';
|
|
12
|
+
export * from './crew-builder.js';
|
|
13
|
+
export * from './mcp-tools.js';
|
|
14
|
+
export * from './jira.js';
|
|
10
15
|
import { taskTools, handleCreateTask, handleListTasks, handleGetTask, handleUpdateTask, handleGetTaskTimeline, handleCancelTask } from './tasks.js';
|
|
11
16
|
import { messageTools, handleGetMessages, handleSendMessage } from './messages.js';
|
|
12
17
|
import { approvalTools, handleGetPendingApprovals, handleApproveTask, handleRejectTask, handleRequestChanges } from './approvals.js';
|
|
18
|
+
import { serviceTools, handleListServices } from './services.js';
|
|
19
|
+
import { crewaiTools, handleCrewAIHealth, handleCrewAIInputs, handleCrewAIKickoff, handleCrewAIStatus } from './crewai.js';
|
|
20
|
+
import { crewBuilderTools, handleCrewValidate, handleCrewKickoff, handleCrewStatus, handleCrewList } from './crew-builder.js';
|
|
21
|
+
import { mcpRemoteTools, handleMcpDiscoverTools, handleMcpCallTool } from './mcp-tools.js';
|
|
22
|
+
import { jiraTools, handleJiraSearchIssues, handleJiraGetIssue, handleJiraCreateIssue, handleJiraUpdateIssue, handleJiraAddComment, handleJiraGetComments, handleJiraGetTransitions, handleJiraTransitionIssue, handleJiraListProjects, handleJiraAssignIssue } from './jira.js';
|
|
13
23
|
// ============================================
|
|
14
24
|
// All Tools
|
|
15
25
|
// ============================================
|
|
@@ -17,6 +27,11 @@ export const allTools = {
|
|
|
17
27
|
...taskTools,
|
|
18
28
|
...messageTools,
|
|
19
29
|
...approvalTools,
|
|
30
|
+
...serviceTools,
|
|
31
|
+
...crewaiTools,
|
|
32
|
+
...crewBuilderTools,
|
|
33
|
+
...mcpRemoteTools,
|
|
34
|
+
...jiraTools,
|
|
20
35
|
};
|
|
21
36
|
/**
|
|
22
37
|
* Check gateway auth for an MCP tool call.
|
|
@@ -163,6 +178,74 @@ export async function handleToolCall(toolName, args, context) {
|
|
|
163
178
|
case 'request_changes':
|
|
164
179
|
result = await handleRequestChanges(client, args);
|
|
165
180
|
break;
|
|
181
|
+
// Service discovery tools
|
|
182
|
+
case 'list_services':
|
|
183
|
+
result = await handleListServices(client, args);
|
|
184
|
+
break;
|
|
185
|
+
// CrewAI tools (hosted platform)
|
|
186
|
+
case 'crewai_health':
|
|
187
|
+
result = await handleCrewAIHealth(client, args);
|
|
188
|
+
break;
|
|
189
|
+
case 'crewai_inputs':
|
|
190
|
+
result = await handleCrewAIInputs(client, args);
|
|
191
|
+
break;
|
|
192
|
+
case 'crewai_kickoff':
|
|
193
|
+
result = await handleCrewAIKickoff(client, args);
|
|
194
|
+
break;
|
|
195
|
+
case 'crewai_status':
|
|
196
|
+
result = await handleCrewAIStatus(client, args);
|
|
197
|
+
break;
|
|
198
|
+
// Crew Builder tools (local YAML-based crews)
|
|
199
|
+
case 'crew_validate':
|
|
200
|
+
result = await handleCrewValidate(client, args);
|
|
201
|
+
break;
|
|
202
|
+
case 'crew_kickoff':
|
|
203
|
+
result = await handleCrewKickoff(client, args);
|
|
204
|
+
break;
|
|
205
|
+
case 'crew_status':
|
|
206
|
+
result = await handleCrewStatus(client, args);
|
|
207
|
+
break;
|
|
208
|
+
case 'crew_list':
|
|
209
|
+
result = await handleCrewList(client, args);
|
|
210
|
+
break;
|
|
211
|
+
// MCP remote tools (discover and call tools on external MCP servers)
|
|
212
|
+
case 'mcp_discover_tools':
|
|
213
|
+
result = await handleMcpDiscoverTools(client, args);
|
|
214
|
+
break;
|
|
215
|
+
case 'mcp_call_tool':
|
|
216
|
+
result = await handleMcpCallTool(client, args);
|
|
217
|
+
break;
|
|
218
|
+
// Jira Cloud tools
|
|
219
|
+
case 'jira_search_issues':
|
|
220
|
+
result = await handleJiraSearchIssues(client, args);
|
|
221
|
+
break;
|
|
222
|
+
case 'jira_get_issue':
|
|
223
|
+
result = await handleJiraGetIssue(client, args);
|
|
224
|
+
break;
|
|
225
|
+
case 'jira_create_issue':
|
|
226
|
+
result = await handleJiraCreateIssue(client, args);
|
|
227
|
+
break;
|
|
228
|
+
case 'jira_update_issue':
|
|
229
|
+
result = await handleJiraUpdateIssue(client, args);
|
|
230
|
+
break;
|
|
231
|
+
case 'jira_add_comment':
|
|
232
|
+
result = await handleJiraAddComment(client, args);
|
|
233
|
+
break;
|
|
234
|
+
case 'jira_get_comments':
|
|
235
|
+
result = await handleJiraGetComments(client, args);
|
|
236
|
+
break;
|
|
237
|
+
case 'jira_get_transitions':
|
|
238
|
+
result = await handleJiraGetTransitions(client, args);
|
|
239
|
+
break;
|
|
240
|
+
case 'jira_transition_issue':
|
|
241
|
+
result = await handleJiraTransitionIssue(client, args);
|
|
242
|
+
break;
|
|
243
|
+
case 'jira_list_projects':
|
|
244
|
+
result = await handleJiraListProjects(client, args);
|
|
245
|
+
break;
|
|
246
|
+
case 'jira_assign_issue':
|
|
247
|
+
result = await handleJiraAssignIssue(client, args);
|
|
248
|
+
break;
|
|
166
249
|
default:
|
|
167
250
|
result = {
|
|
168
251
|
content: [
|
package/dist/tools/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/tools/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Jira Cloud Tools
|
|
3
|
+
*
|
|
4
|
+
* MCP tools for interacting with Jira Cloud through the Dobby gateway proxy.
|
|
5
|
+
* All calls go through /api/v1/gateway/agents/proxy which handles:
|
|
6
|
+
* - credential decryption (Basic Auth: email + API token)
|
|
7
|
+
* - connection lookup per tenant
|
|
8
|
+
* - request forwarding to Jira REST API v3
|
|
9
|
+
* - ADF wrapping for descriptions and comments
|
|
10
|
+
* - rate limit (429) handling with Retry-After
|
|
11
|
+
*
|
|
12
|
+
* Jira API docs: https://developer.atlassian.com/cloud/jira/platform/rest/v3/
|
|
13
|
+
*/
|
|
14
|
+
import { DobbyClient } from '../lib/dobby-client.js';
|
|
15
|
+
export declare const jiraTools: {
|
|
16
|
+
jira_search_issues: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
inputSchema: {
|
|
20
|
+
type: "object";
|
|
21
|
+
properties: {
|
|
22
|
+
jql: {
|
|
23
|
+
type: string;
|
|
24
|
+
description: string;
|
|
25
|
+
};
|
|
26
|
+
max_results: {
|
|
27
|
+
type: string;
|
|
28
|
+
description: string;
|
|
29
|
+
};
|
|
30
|
+
next_page_token: {
|
|
31
|
+
type: string;
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
connection_id: {
|
|
35
|
+
type: string;
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
required: string[];
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
jira_get_issue: {
|
|
43
|
+
name: string;
|
|
44
|
+
description: string;
|
|
45
|
+
inputSchema: {
|
|
46
|
+
type: "object";
|
|
47
|
+
properties: {
|
|
48
|
+
issue_key: {
|
|
49
|
+
type: string;
|
|
50
|
+
description: string;
|
|
51
|
+
};
|
|
52
|
+
connection_id: {
|
|
53
|
+
type: string;
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
required: string[];
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
jira_create_issue: {
|
|
61
|
+
name: string;
|
|
62
|
+
description: string;
|
|
63
|
+
inputSchema: {
|
|
64
|
+
type: "object";
|
|
65
|
+
properties: {
|
|
66
|
+
project_key: {
|
|
67
|
+
type: string;
|
|
68
|
+
description: string;
|
|
69
|
+
};
|
|
70
|
+
summary: {
|
|
71
|
+
type: string;
|
|
72
|
+
description: string;
|
|
73
|
+
};
|
|
74
|
+
description: {
|
|
75
|
+
type: string;
|
|
76
|
+
description: string;
|
|
77
|
+
};
|
|
78
|
+
issue_type: {
|
|
79
|
+
type: string;
|
|
80
|
+
description: string;
|
|
81
|
+
};
|
|
82
|
+
priority: {
|
|
83
|
+
type: string;
|
|
84
|
+
description: string;
|
|
85
|
+
};
|
|
86
|
+
labels: {
|
|
87
|
+
type: string;
|
|
88
|
+
items: {
|
|
89
|
+
type: string;
|
|
90
|
+
};
|
|
91
|
+
description: string;
|
|
92
|
+
};
|
|
93
|
+
connection_id: {
|
|
94
|
+
type: string;
|
|
95
|
+
description: string;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
required: string[];
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
jira_update_issue: {
|
|
102
|
+
name: string;
|
|
103
|
+
description: string;
|
|
104
|
+
inputSchema: {
|
|
105
|
+
type: "object";
|
|
106
|
+
properties: {
|
|
107
|
+
issue_key: {
|
|
108
|
+
type: string;
|
|
109
|
+
description: string;
|
|
110
|
+
};
|
|
111
|
+
summary: {
|
|
112
|
+
type: string;
|
|
113
|
+
description: string;
|
|
114
|
+
};
|
|
115
|
+
description: {
|
|
116
|
+
type: string;
|
|
117
|
+
description: string;
|
|
118
|
+
};
|
|
119
|
+
priority: {
|
|
120
|
+
type: string;
|
|
121
|
+
description: string;
|
|
122
|
+
};
|
|
123
|
+
labels: {
|
|
124
|
+
type: string;
|
|
125
|
+
items: {
|
|
126
|
+
type: string;
|
|
127
|
+
};
|
|
128
|
+
description: string;
|
|
129
|
+
};
|
|
130
|
+
connection_id: {
|
|
131
|
+
type: string;
|
|
132
|
+
description: string;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
required: string[];
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
jira_add_comment: {
|
|
139
|
+
name: string;
|
|
140
|
+
description: string;
|
|
141
|
+
inputSchema: {
|
|
142
|
+
type: "object";
|
|
143
|
+
properties: {
|
|
144
|
+
issue_key: {
|
|
145
|
+
type: string;
|
|
146
|
+
description: string;
|
|
147
|
+
};
|
|
148
|
+
comment_body: {
|
|
149
|
+
type: string;
|
|
150
|
+
description: string;
|
|
151
|
+
};
|
|
152
|
+
connection_id: {
|
|
153
|
+
type: string;
|
|
154
|
+
description: string;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
required: string[];
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
jira_get_comments: {
|
|
161
|
+
name: string;
|
|
162
|
+
description: string;
|
|
163
|
+
inputSchema: {
|
|
164
|
+
type: "object";
|
|
165
|
+
properties: {
|
|
166
|
+
issue_key: {
|
|
167
|
+
type: string;
|
|
168
|
+
description: string;
|
|
169
|
+
};
|
|
170
|
+
max_results: {
|
|
171
|
+
type: string;
|
|
172
|
+
description: string;
|
|
173
|
+
};
|
|
174
|
+
connection_id: {
|
|
175
|
+
type: string;
|
|
176
|
+
description: string;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
required: string[];
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
jira_get_transitions: {
|
|
183
|
+
name: string;
|
|
184
|
+
description: string;
|
|
185
|
+
inputSchema: {
|
|
186
|
+
type: "object";
|
|
187
|
+
properties: {
|
|
188
|
+
issue_key: {
|
|
189
|
+
type: string;
|
|
190
|
+
description: string;
|
|
191
|
+
};
|
|
192
|
+
connection_id: {
|
|
193
|
+
type: string;
|
|
194
|
+
description: string;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
required: string[];
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
jira_transition_issue: {
|
|
201
|
+
name: string;
|
|
202
|
+
description: string;
|
|
203
|
+
inputSchema: {
|
|
204
|
+
type: "object";
|
|
205
|
+
properties: {
|
|
206
|
+
issue_key: {
|
|
207
|
+
type: string;
|
|
208
|
+
description: string;
|
|
209
|
+
};
|
|
210
|
+
transition_id: {
|
|
211
|
+
type: string;
|
|
212
|
+
description: string;
|
|
213
|
+
};
|
|
214
|
+
connection_id: {
|
|
215
|
+
type: string;
|
|
216
|
+
description: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
required: string[];
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
jira_list_projects: {
|
|
223
|
+
name: string;
|
|
224
|
+
description: string;
|
|
225
|
+
inputSchema: {
|
|
226
|
+
type: "object";
|
|
227
|
+
properties: {
|
|
228
|
+
max_results: {
|
|
229
|
+
type: string;
|
|
230
|
+
description: string;
|
|
231
|
+
};
|
|
232
|
+
connection_id: {
|
|
233
|
+
type: string;
|
|
234
|
+
description: string;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
jira_assign_issue: {
|
|
240
|
+
name: string;
|
|
241
|
+
description: string;
|
|
242
|
+
inputSchema: {
|
|
243
|
+
type: "object";
|
|
244
|
+
properties: {
|
|
245
|
+
issue_key: {
|
|
246
|
+
type: string;
|
|
247
|
+
description: string;
|
|
248
|
+
};
|
|
249
|
+
assignee_account_id: {
|
|
250
|
+
type: string;
|
|
251
|
+
description: string;
|
|
252
|
+
};
|
|
253
|
+
connection_id: {
|
|
254
|
+
type: string;
|
|
255
|
+
description: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
required: string[];
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
export declare function handleJiraSearchIssues(client: DobbyClient, args: {
|
|
263
|
+
jql: string;
|
|
264
|
+
max_results?: number;
|
|
265
|
+
next_page_token?: string;
|
|
266
|
+
connection_id?: string;
|
|
267
|
+
}): Promise<{
|
|
268
|
+
content: {
|
|
269
|
+
type: "text";
|
|
270
|
+
text: string;
|
|
271
|
+
}[];
|
|
272
|
+
isError?: undefined;
|
|
273
|
+
} | {
|
|
274
|
+
content: {
|
|
275
|
+
type: "text";
|
|
276
|
+
text: string;
|
|
277
|
+
}[];
|
|
278
|
+
isError: boolean;
|
|
279
|
+
}>;
|
|
280
|
+
export declare function handleJiraGetIssue(client: DobbyClient, args: {
|
|
281
|
+
issue_key: string;
|
|
282
|
+
connection_id?: string;
|
|
283
|
+
}): Promise<{
|
|
284
|
+
content: {
|
|
285
|
+
type: "text";
|
|
286
|
+
text: string;
|
|
287
|
+
}[];
|
|
288
|
+
isError?: undefined;
|
|
289
|
+
} | {
|
|
290
|
+
content: {
|
|
291
|
+
type: "text";
|
|
292
|
+
text: string;
|
|
293
|
+
}[];
|
|
294
|
+
isError: boolean;
|
|
295
|
+
}>;
|
|
296
|
+
export declare function handleJiraCreateIssue(client: DobbyClient, args: {
|
|
297
|
+
project_key: string;
|
|
298
|
+
summary: string;
|
|
299
|
+
description?: string;
|
|
300
|
+
issue_type?: string;
|
|
301
|
+
priority?: string;
|
|
302
|
+
labels?: string[];
|
|
303
|
+
connection_id?: string;
|
|
304
|
+
}): Promise<{
|
|
305
|
+
content: {
|
|
306
|
+
type: "text";
|
|
307
|
+
text: string;
|
|
308
|
+
}[];
|
|
309
|
+
isError?: undefined;
|
|
310
|
+
} | {
|
|
311
|
+
content: {
|
|
312
|
+
type: "text";
|
|
313
|
+
text: string;
|
|
314
|
+
}[];
|
|
315
|
+
isError: boolean;
|
|
316
|
+
}>;
|
|
317
|
+
export declare function handleJiraUpdateIssue(client: DobbyClient, args: {
|
|
318
|
+
issue_key: string;
|
|
319
|
+
summary?: string;
|
|
320
|
+
description?: string;
|
|
321
|
+
priority?: string;
|
|
322
|
+
labels?: string[];
|
|
323
|
+
connection_id?: string;
|
|
324
|
+
}): Promise<{
|
|
325
|
+
content: {
|
|
326
|
+
type: "text";
|
|
327
|
+
text: string;
|
|
328
|
+
}[];
|
|
329
|
+
isError?: undefined;
|
|
330
|
+
} | {
|
|
331
|
+
content: {
|
|
332
|
+
type: "text";
|
|
333
|
+
text: string;
|
|
334
|
+
}[];
|
|
335
|
+
isError: boolean;
|
|
336
|
+
}>;
|
|
337
|
+
export declare function handleJiraAddComment(client: DobbyClient, args: {
|
|
338
|
+
issue_key: string;
|
|
339
|
+
comment_body: string;
|
|
340
|
+
connection_id?: string;
|
|
341
|
+
}): Promise<{
|
|
342
|
+
content: {
|
|
343
|
+
type: "text";
|
|
344
|
+
text: string;
|
|
345
|
+
}[];
|
|
346
|
+
isError?: undefined;
|
|
347
|
+
} | {
|
|
348
|
+
content: {
|
|
349
|
+
type: "text";
|
|
350
|
+
text: string;
|
|
351
|
+
}[];
|
|
352
|
+
isError: boolean;
|
|
353
|
+
}>;
|
|
354
|
+
export declare function handleJiraGetComments(client: DobbyClient, args: {
|
|
355
|
+
issue_key: string;
|
|
356
|
+
max_results?: number;
|
|
357
|
+
connection_id?: string;
|
|
358
|
+
}): Promise<{
|
|
359
|
+
content: {
|
|
360
|
+
type: "text";
|
|
361
|
+
text: string;
|
|
362
|
+
}[];
|
|
363
|
+
isError?: undefined;
|
|
364
|
+
} | {
|
|
365
|
+
content: {
|
|
366
|
+
type: "text";
|
|
367
|
+
text: string;
|
|
368
|
+
}[];
|
|
369
|
+
isError: boolean;
|
|
370
|
+
}>;
|
|
371
|
+
export declare function handleJiraGetTransitions(client: DobbyClient, args: {
|
|
372
|
+
issue_key: string;
|
|
373
|
+
connection_id?: string;
|
|
374
|
+
}): Promise<{
|
|
375
|
+
content: {
|
|
376
|
+
type: "text";
|
|
377
|
+
text: string;
|
|
378
|
+
}[];
|
|
379
|
+
isError?: undefined;
|
|
380
|
+
} | {
|
|
381
|
+
content: {
|
|
382
|
+
type: "text";
|
|
383
|
+
text: string;
|
|
384
|
+
}[];
|
|
385
|
+
isError: boolean;
|
|
386
|
+
}>;
|
|
387
|
+
export declare function handleJiraTransitionIssue(client: DobbyClient, args: {
|
|
388
|
+
issue_key: string;
|
|
389
|
+
transition_id: string;
|
|
390
|
+
connection_id?: string;
|
|
391
|
+
}): Promise<{
|
|
392
|
+
content: {
|
|
393
|
+
type: "text";
|
|
394
|
+
text: string;
|
|
395
|
+
}[];
|
|
396
|
+
isError?: undefined;
|
|
397
|
+
} | {
|
|
398
|
+
content: {
|
|
399
|
+
type: "text";
|
|
400
|
+
text: string;
|
|
401
|
+
}[];
|
|
402
|
+
isError: boolean;
|
|
403
|
+
}>;
|
|
404
|
+
export declare function handleJiraListProjects(client: DobbyClient, args: {
|
|
405
|
+
max_results?: number;
|
|
406
|
+
connection_id?: string;
|
|
407
|
+
}): Promise<{
|
|
408
|
+
content: {
|
|
409
|
+
type: "text";
|
|
410
|
+
text: string;
|
|
411
|
+
}[];
|
|
412
|
+
isError?: undefined;
|
|
413
|
+
} | {
|
|
414
|
+
content: {
|
|
415
|
+
type: "text";
|
|
416
|
+
text: string;
|
|
417
|
+
}[];
|
|
418
|
+
isError: boolean;
|
|
419
|
+
}>;
|
|
420
|
+
export declare function handleJiraAssignIssue(client: DobbyClient, args: {
|
|
421
|
+
issue_key: string;
|
|
422
|
+
assignee_account_id?: string | null;
|
|
423
|
+
connection_id?: string;
|
|
424
|
+
}): Promise<{
|
|
425
|
+
content: {
|
|
426
|
+
type: "text";
|
|
427
|
+
text: string;
|
|
428
|
+
}[];
|
|
429
|
+
isError?: undefined;
|
|
430
|
+
} | {
|
|
431
|
+
content: {
|
|
432
|
+
type: "text";
|
|
433
|
+
text: string;
|
|
434
|
+
}[];
|
|
435
|
+
isError: boolean;
|
|
436
|
+
}>;
|
|
437
|
+
//# sourceMappingURL=jira.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jira.d.ts","sourceRoot":"","sources":["../../src/tools/jira.ts"],"names":[],"mappings":"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"}
|