@paca-ai/paca-mcp 0.1.0-rc.6
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/api/client.d.ts +53 -0
- package/api/client.d.ts.map +1 -0
- package/api/client.js +267 -0
- package/api/client.js.map +1 -0
- package/api/doc-client.d.ts +26 -0
- package/api/doc-client.d.ts.map +1 -0
- package/api/doc-client.js +109 -0
- package/api/doc-client.js.map +1 -0
- package/api/extended-client.d.ts +44 -0
- package/api/extended-client.d.ts.map +1 -0
- package/api/extended-client.js +167 -0
- package/api/extended-client.js.map +1 -0
- package/api/github-client.d.ts +21 -0
- package/api/github-client.d.ts.map +1 -0
- package/api/github-client.js +87 -0
- package/api/github-client.js.map +1 -0
- package/api/index.d.ts +7 -0
- package/api/index.d.ts.map +1 -0
- package/api/index.js +7 -0
- package/api/index.js.map +1 -0
- package/api/task-extended-client.d.ts +28 -0
- package/api/task-extended-client.d.ts.map +1 -0
- package/api/task-extended-client.js +123 -0
- package/api/task-extended-client.js.map +1 -0
- package/api/views-client.d.ts +36 -0
- package/api/views-client.d.ts.map +1 -0
- package/api/views-client.js +157 -0
- package/api/views-client.js.map +1 -0
- package/index.d.ts +3 -0
- package/index.d.ts.map +1 -0
- package/index.js +41 -0
- package/index.js.map +1 -0
- package/package.json +40 -0
- package/server.d.ts +9 -0
- package/server.d.ts.map +1 -0
- package/server.js +46 -0
- package/server.js.map +1 -0
- package/tools/attachment-tools.d.ts +15 -0
- package/tools/attachment-tools.d.ts.map +1 -0
- package/tools/attachment-tools.js +402 -0
- package/tools/attachment-tools.js.map +1 -0
- package/tools/doc-github-tools.d.ts +15 -0
- package/tools/doc-github-tools.d.ts.map +1 -0
- package/tools/doc-github-tools.js +520 -0
- package/tools/doc-github-tools.js.map +1 -0
- package/tools/document-tools.d.ts +16 -0
- package/tools/document-tools.d.ts.map +1 -0
- package/tools/document-tools.js +224 -0
- package/tools/document-tools.js.map +1 -0
- package/tools/index.d.ts +19 -0
- package/tools/index.d.ts.map +1 -0
- package/tools/index.js +171 -0
- package/tools/index.js.map +1 -0
- package/tools/member-tools.d.ts +15 -0
- package/tools/member-tools.d.ts.map +1 -0
- package/tools/member-tools.js +391 -0
- package/tools/member-tools.js.map +1 -0
- package/tools/project-tools.d.ts +16 -0
- package/tools/project-tools.d.ts.map +1 -0
- package/tools/project-tools.js +178 -0
- package/tools/project-tools.js.map +1 -0
- package/tools/sprint-tools.d.ts +16 -0
- package/tools/sprint-tools.d.ts.map +1 -0
- package/tools/sprint-tools.js +258 -0
- package/tools/sprint-tools.js.map +1 -0
- package/tools/task-activity-tools.d.ts +15 -0
- package/tools/task-activity-tools.d.ts.map +1 -0
- package/tools/task-activity-tools.js +425 -0
- package/tools/task-activity-tools.js.map +1 -0
- package/tools/task-tools.d.ts +16 -0
- package/tools/task-tools.d.ts.map +1 -0
- package/tools/task-tools.js +344 -0
- package/tools/task-tools.js.map +1 -0
- package/tools/task-type-tools.d.ts +12 -0
- package/tools/task-type-tools.d.ts.map +1 -0
- package/tools/task-type-tools.js +459 -0
- package/tools/task-type-tools.js.map +1 -0
- package/tools/view-tools.d.ts +15 -0
- package/tools/view-tools.d.ts.map +1 -0
- package/tools/view-tools.js +660 -0
- package/tools/view-tools.js.map +1 -0
- package/types/index.d.ts +564 -0
- package/types/index.d.ts.map +1 -0
- package/types/index.js +2 -0
- package/types/index.js.map +1 -0
- package/utils/converters.d.ts +13 -0
- package/utils/converters.d.ts.map +1 -0
- package/utils/converters.js +50 -0
- package/utils/converters.js.map +1 -0
- package/utils/formatters.d.ts +34 -0
- package/utils/formatters.d.ts.map +1 -0
- package/utils/formatters.js +87 -0
- package/utils/formatters.js.map +1 -0
- package/utils/index.d.ts +3 -0
- package/utils/index.d.ts.map +1 -0
- package/utils/index.js +3 -0
- package/utils/index.js.map +1 -0
|
@@ -0,0 +1,459 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { formatList } from "../utils/index.js";
|
|
3
|
+
const ListTaskTypesSchema = z.object({
|
|
4
|
+
projectId: z.string(),
|
|
5
|
+
});
|
|
6
|
+
const CreateTaskTypeSchema = z.object({
|
|
7
|
+
projectId: z.string(),
|
|
8
|
+
name: z.string(),
|
|
9
|
+
icon: z.string().optional(),
|
|
10
|
+
color: z.string().optional(),
|
|
11
|
+
description: z.string().optional(),
|
|
12
|
+
});
|
|
13
|
+
const UpdateTaskTypeSchema = z.object({
|
|
14
|
+
projectId: z.string(),
|
|
15
|
+
typeId: z.string(),
|
|
16
|
+
name: z.string().optional(),
|
|
17
|
+
icon: z.string().optional(),
|
|
18
|
+
color: z.string().optional(),
|
|
19
|
+
description: z.string().optional(),
|
|
20
|
+
});
|
|
21
|
+
const DeleteTaskTypeSchema = z.object({
|
|
22
|
+
projectId: z.string(),
|
|
23
|
+
typeId: z.string(),
|
|
24
|
+
});
|
|
25
|
+
const SetDefaultTaskTypeSchema = z.object({
|
|
26
|
+
projectId: z.string(),
|
|
27
|
+
typeId: z.string(),
|
|
28
|
+
});
|
|
29
|
+
const ListTaskStatusesSchema = z.object({
|
|
30
|
+
projectId: z.string(),
|
|
31
|
+
});
|
|
32
|
+
const CreateTaskStatusSchema = z.object({
|
|
33
|
+
projectId: z.string(),
|
|
34
|
+
name: z.string(),
|
|
35
|
+
color: z.string().optional(),
|
|
36
|
+
category: z.string(),
|
|
37
|
+
});
|
|
38
|
+
const UpdateTaskStatusSchema = z.object({
|
|
39
|
+
projectId: z.string(),
|
|
40
|
+
statusId: z.string(),
|
|
41
|
+
name: z.string().optional(),
|
|
42
|
+
color: z.string().optional(),
|
|
43
|
+
category: z.string().optional(),
|
|
44
|
+
position: z.number().optional(),
|
|
45
|
+
});
|
|
46
|
+
const DeleteTaskStatusSchema = z.object({
|
|
47
|
+
projectId: z.string(),
|
|
48
|
+
statusId: z.string(),
|
|
49
|
+
});
|
|
50
|
+
const SetDefaultTaskStatusSchema = z.object({
|
|
51
|
+
projectId: z.string(),
|
|
52
|
+
statusId: z.string(),
|
|
53
|
+
});
|
|
54
|
+
/**
|
|
55
|
+
* Returns all task type and status related MCP tools.
|
|
56
|
+
*/
|
|
57
|
+
export function getTaskTypeTools() {
|
|
58
|
+
return [
|
|
59
|
+
{
|
|
60
|
+
name: "list_task_types",
|
|
61
|
+
description: "List all task types in a project",
|
|
62
|
+
inputSchema: {
|
|
63
|
+
type: "object",
|
|
64
|
+
properties: {
|
|
65
|
+
projectId: {
|
|
66
|
+
type: "string",
|
|
67
|
+
description: "The ID of the project",
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
required: ["projectId"],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "create_task_type",
|
|
75
|
+
description: "Create a new task type",
|
|
76
|
+
inputSchema: {
|
|
77
|
+
type: "object",
|
|
78
|
+
properties: {
|
|
79
|
+
projectId: {
|
|
80
|
+
type: "string",
|
|
81
|
+
description: "The ID of the project",
|
|
82
|
+
},
|
|
83
|
+
name: {
|
|
84
|
+
type: "string",
|
|
85
|
+
description: "The name of the task type",
|
|
86
|
+
},
|
|
87
|
+
icon: {
|
|
88
|
+
type: "string",
|
|
89
|
+
description: "Icon for the task type",
|
|
90
|
+
},
|
|
91
|
+
color: {
|
|
92
|
+
type: "string",
|
|
93
|
+
description: "Color for the task type",
|
|
94
|
+
},
|
|
95
|
+
description: {
|
|
96
|
+
type: "string",
|
|
97
|
+
description: "Description of the task type",
|
|
98
|
+
},
|
|
99
|
+
},
|
|
100
|
+
required: ["projectId", "name"],
|
|
101
|
+
},
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
name: "update_task_type",
|
|
105
|
+
description: "Update an existing task type",
|
|
106
|
+
inputSchema: {
|
|
107
|
+
type: "object",
|
|
108
|
+
properties: {
|
|
109
|
+
projectId: {
|
|
110
|
+
type: "string",
|
|
111
|
+
description: "The ID of the project",
|
|
112
|
+
},
|
|
113
|
+
typeId: {
|
|
114
|
+
type: "string",
|
|
115
|
+
description: "The ID of the task type",
|
|
116
|
+
},
|
|
117
|
+
name: {
|
|
118
|
+
type: "string",
|
|
119
|
+
description: "The new name of the task type",
|
|
120
|
+
},
|
|
121
|
+
icon: {
|
|
122
|
+
type: "string",
|
|
123
|
+
description: "The new icon",
|
|
124
|
+
},
|
|
125
|
+
color: {
|
|
126
|
+
type: "string",
|
|
127
|
+
description: "The new color",
|
|
128
|
+
},
|
|
129
|
+
description: {
|
|
130
|
+
type: "string",
|
|
131
|
+
description: "The new description",
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
required: ["projectId", "typeId"],
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
name: "delete_task_type",
|
|
139
|
+
description: "Delete a task type",
|
|
140
|
+
inputSchema: {
|
|
141
|
+
type: "object",
|
|
142
|
+
properties: {
|
|
143
|
+
projectId: {
|
|
144
|
+
type: "string",
|
|
145
|
+
description: "The ID of the project",
|
|
146
|
+
},
|
|
147
|
+
typeId: {
|
|
148
|
+
type: "string",
|
|
149
|
+
description: "The ID of the task type",
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
required: ["projectId", "typeId"],
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
name: "set_default_task_type",
|
|
157
|
+
description: "Set a task type as the default for the project",
|
|
158
|
+
inputSchema: {
|
|
159
|
+
type: "object",
|
|
160
|
+
properties: {
|
|
161
|
+
projectId: {
|
|
162
|
+
type: "string",
|
|
163
|
+
description: "The ID of the project",
|
|
164
|
+
},
|
|
165
|
+
typeId: {
|
|
166
|
+
type: "string",
|
|
167
|
+
description: "The ID of the task type to set as default",
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
required: ["projectId", "typeId"],
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
];
|
|
174
|
+
}
|
|
175
|
+
export function getTaskStatusTools() {
|
|
176
|
+
return [
|
|
177
|
+
{
|
|
178
|
+
name: "list_task_statuses",
|
|
179
|
+
description: "List all task statuses in a project",
|
|
180
|
+
inputSchema: {
|
|
181
|
+
type: "object",
|
|
182
|
+
properties: {
|
|
183
|
+
projectId: {
|
|
184
|
+
type: "string",
|
|
185
|
+
description: "The ID of the project",
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
required: ["projectId"],
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
name: "create_task_status",
|
|
193
|
+
description: "Create a new task status",
|
|
194
|
+
inputSchema: {
|
|
195
|
+
type: "object",
|
|
196
|
+
properties: {
|
|
197
|
+
projectId: {
|
|
198
|
+
type: "string",
|
|
199
|
+
description: "The ID of the project",
|
|
200
|
+
},
|
|
201
|
+
name: {
|
|
202
|
+
type: "string",
|
|
203
|
+
description: "The name of the status",
|
|
204
|
+
},
|
|
205
|
+
color: {
|
|
206
|
+
type: "string",
|
|
207
|
+
description: "Color for the status",
|
|
208
|
+
},
|
|
209
|
+
category: {
|
|
210
|
+
type: "string",
|
|
211
|
+
description: "Category of the status (backlog, refinement, ready, todo, inprogress, done)",
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
required: ["projectId", "name", "category"],
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: "update_task_status",
|
|
219
|
+
description: "Update an existing task status",
|
|
220
|
+
inputSchema: {
|
|
221
|
+
type: "object",
|
|
222
|
+
properties: {
|
|
223
|
+
projectId: {
|
|
224
|
+
type: "string",
|
|
225
|
+
description: "The ID of the project",
|
|
226
|
+
},
|
|
227
|
+
statusId: {
|
|
228
|
+
type: "string",
|
|
229
|
+
description: "The ID of the status",
|
|
230
|
+
},
|
|
231
|
+
name: {
|
|
232
|
+
type: "string",
|
|
233
|
+
description: "The new name",
|
|
234
|
+
},
|
|
235
|
+
color: {
|
|
236
|
+
type: "string",
|
|
237
|
+
description: "The new color",
|
|
238
|
+
},
|
|
239
|
+
category: {
|
|
240
|
+
type: "string",
|
|
241
|
+
description: "The new category",
|
|
242
|
+
},
|
|
243
|
+
position: {
|
|
244
|
+
type: "number",
|
|
245
|
+
description: "The new position",
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
required: ["projectId", "statusId"],
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "delete_task_status",
|
|
253
|
+
description: "Delete a task status",
|
|
254
|
+
inputSchema: {
|
|
255
|
+
type: "object",
|
|
256
|
+
properties: {
|
|
257
|
+
projectId: {
|
|
258
|
+
type: "string",
|
|
259
|
+
description: "The ID of the project",
|
|
260
|
+
},
|
|
261
|
+
statusId: {
|
|
262
|
+
type: "string",
|
|
263
|
+
description: "The ID of the status",
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
required: ["projectId", "statusId"],
|
|
267
|
+
},
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
name: "set_default_task_status",
|
|
271
|
+
description: "Set a task status as the default for the project",
|
|
272
|
+
inputSchema: {
|
|
273
|
+
type: "object",
|
|
274
|
+
properties: {
|
|
275
|
+
projectId: {
|
|
276
|
+
type: "string",
|
|
277
|
+
description: "The ID of the project",
|
|
278
|
+
},
|
|
279
|
+
statusId: {
|
|
280
|
+
type: "string",
|
|
281
|
+
description: "The ID of the task status to set as default",
|
|
282
|
+
},
|
|
283
|
+
},
|
|
284
|
+
required: ["projectId", "statusId"],
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
];
|
|
288
|
+
}
|
|
289
|
+
function formatTaskType(type) {
|
|
290
|
+
return `Task Type: ${type.name}
|
|
291
|
+
ID: ${type.id}
|
|
292
|
+
Icon: ${type.icon || "None"}
|
|
293
|
+
Color: ${type.color || "None"}
|
|
294
|
+
Description: ${type.description || "None"}
|
|
295
|
+
Default: ${type.is_default}
|
|
296
|
+
System: ${type.is_system}
|
|
297
|
+
Created: ${type.created_at}`;
|
|
298
|
+
}
|
|
299
|
+
function formatTaskStatus(status) {
|
|
300
|
+
return `Task Status: ${status.name}
|
|
301
|
+
ID: ${status.id}
|
|
302
|
+
Color: ${status.color || "None"}
|
|
303
|
+
Category: ${status.category}
|
|
304
|
+
Position: ${status.position}
|
|
305
|
+
Default: ${status.is_default ?? false}
|
|
306
|
+
Created: ${status.created_at}`;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Handles task type and status tool calls.
|
|
310
|
+
*/
|
|
311
|
+
export async function handleTaskTypeTool(toolName, args, client) {
|
|
312
|
+
switch (toolName) {
|
|
313
|
+
case "list_task_types": {
|
|
314
|
+
const { projectId } = ListTaskTypesSchema.parse(args);
|
|
315
|
+
const types = await client.listTaskTypes(projectId);
|
|
316
|
+
const formatted = formatList(types, formatTaskType);
|
|
317
|
+
return {
|
|
318
|
+
content: [
|
|
319
|
+
{
|
|
320
|
+
type: "text",
|
|
321
|
+
text: `Task Types:\n\n${formatted}`,
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
case "create_task_type": {
|
|
327
|
+
const { projectId, name, icon, color, description } = CreateTaskTypeSchema.parse(args);
|
|
328
|
+
const type = await client.createTaskType(projectId, {
|
|
329
|
+
name,
|
|
330
|
+
icon,
|
|
331
|
+
color,
|
|
332
|
+
description,
|
|
333
|
+
});
|
|
334
|
+
return {
|
|
335
|
+
content: [
|
|
336
|
+
{
|
|
337
|
+
type: "text",
|
|
338
|
+
text: `Task type created successfully:\n\n${formatTaskType(type)}`,
|
|
339
|
+
},
|
|
340
|
+
],
|
|
341
|
+
};
|
|
342
|
+
}
|
|
343
|
+
case "update_task_type": {
|
|
344
|
+
const { projectId, typeId, name, icon, color, description } = UpdateTaskTypeSchema.parse(args);
|
|
345
|
+
const type = await client.updateTaskType(projectId, typeId, {
|
|
346
|
+
name,
|
|
347
|
+
icon,
|
|
348
|
+
color,
|
|
349
|
+
description,
|
|
350
|
+
});
|
|
351
|
+
return {
|
|
352
|
+
content: [
|
|
353
|
+
{
|
|
354
|
+
type: "text",
|
|
355
|
+
text: `Task type updated successfully:\n\n${formatTaskType(type)}`,
|
|
356
|
+
},
|
|
357
|
+
],
|
|
358
|
+
};
|
|
359
|
+
}
|
|
360
|
+
case "delete_task_type": {
|
|
361
|
+
const { projectId, typeId } = DeleteTaskTypeSchema.parse(args);
|
|
362
|
+
await client.deleteTaskType(projectId, typeId);
|
|
363
|
+
return {
|
|
364
|
+
content: [
|
|
365
|
+
{
|
|
366
|
+
type: "text",
|
|
367
|
+
text: `Task type ${typeId} deleted successfully`,
|
|
368
|
+
},
|
|
369
|
+
],
|
|
370
|
+
};
|
|
371
|
+
}
|
|
372
|
+
case "set_default_task_type": {
|
|
373
|
+
const { projectId, typeId } = SetDefaultTaskTypeSchema.parse(args);
|
|
374
|
+
const type = await client.setDefaultTaskType(projectId, typeId);
|
|
375
|
+
return {
|
|
376
|
+
content: [
|
|
377
|
+
{
|
|
378
|
+
type: "text",
|
|
379
|
+
text: `Default task type set successfully:\n\n${formatTaskType(type)}`,
|
|
380
|
+
},
|
|
381
|
+
],
|
|
382
|
+
};
|
|
383
|
+
}
|
|
384
|
+
case "list_task_statuses": {
|
|
385
|
+
const { projectId } = ListTaskStatusesSchema.parse(args);
|
|
386
|
+
const statuses = await client.listTaskStatuses(projectId);
|
|
387
|
+
const formatted = formatList(statuses, formatTaskStatus);
|
|
388
|
+
return {
|
|
389
|
+
content: [
|
|
390
|
+
{
|
|
391
|
+
type: "text",
|
|
392
|
+
text: `Task Statuses:\n\n${formatted}`,
|
|
393
|
+
},
|
|
394
|
+
],
|
|
395
|
+
};
|
|
396
|
+
}
|
|
397
|
+
case "create_task_status": {
|
|
398
|
+
const { projectId, name, color, category } = CreateTaskStatusSchema.parse(args);
|
|
399
|
+
const status = await client.createTaskStatus(projectId, {
|
|
400
|
+
name,
|
|
401
|
+
color,
|
|
402
|
+
category: category,
|
|
403
|
+
position: 0,
|
|
404
|
+
});
|
|
405
|
+
return {
|
|
406
|
+
content: [
|
|
407
|
+
{
|
|
408
|
+
type: "text",
|
|
409
|
+
text: `Task status created successfully:\n\n${formatTaskStatus(status)}`,
|
|
410
|
+
},
|
|
411
|
+
],
|
|
412
|
+
};
|
|
413
|
+
}
|
|
414
|
+
case "update_task_status": {
|
|
415
|
+
const { projectId, statusId, name, color, category, position } = UpdateTaskStatusSchema.parse(args);
|
|
416
|
+
const status = await client.updateTaskStatus(projectId, statusId, {
|
|
417
|
+
name,
|
|
418
|
+
color,
|
|
419
|
+
category: category,
|
|
420
|
+
position,
|
|
421
|
+
});
|
|
422
|
+
return {
|
|
423
|
+
content: [
|
|
424
|
+
{
|
|
425
|
+
type: "text",
|
|
426
|
+
text: `Task status updated successfully:\n\n${formatTaskStatus(status)}`,
|
|
427
|
+
},
|
|
428
|
+
],
|
|
429
|
+
};
|
|
430
|
+
}
|
|
431
|
+
case "delete_task_status": {
|
|
432
|
+
const { projectId, statusId } = DeleteTaskStatusSchema.parse(args);
|
|
433
|
+
await client.deleteTaskStatus(projectId, statusId);
|
|
434
|
+
return {
|
|
435
|
+
content: [
|
|
436
|
+
{
|
|
437
|
+
type: "text",
|
|
438
|
+
text: `Task status ${statusId} deleted successfully`,
|
|
439
|
+
},
|
|
440
|
+
],
|
|
441
|
+
};
|
|
442
|
+
}
|
|
443
|
+
case "set_default_task_status": {
|
|
444
|
+
const { projectId, statusId } = SetDefaultTaskStatusSchema.parse(args);
|
|
445
|
+
const status = await client.setDefaultTaskStatus(projectId, statusId);
|
|
446
|
+
return {
|
|
447
|
+
content: [
|
|
448
|
+
{
|
|
449
|
+
type: "text",
|
|
450
|
+
text: `Default task status set successfully:\n\n${formatTaskStatus(status)}`,
|
|
451
|
+
},
|
|
452
|
+
],
|
|
453
|
+
};
|
|
454
|
+
}
|
|
455
|
+
default:
|
|
456
|
+
throw new Error(`Unknown task type/status tool: ${toolName}`);
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
//# sourceMappingURL=task-type-tools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-type-tools.js","sourceRoot":"","sources":["../../src/tools/task-type-tools.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
2
|
+
import type { PacaAPIViewsClient } from "../api/index.js";
|
|
3
|
+
/**
|
|
4
|
+
* Returns all view-related MCP tools.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getViewTools(): Tool[];
|
|
7
|
+
/**
|
|
8
|
+
* Returns all custom field related MCP tools.
|
|
9
|
+
*/
|
|
10
|
+
export declare function getCustomFieldTools(): Tool[];
|
|
11
|
+
/**
|
|
12
|
+
* Handles view and custom field tool calls.
|
|
13
|
+
*/
|
|
14
|
+
export declare function handleViewTool(toolName: string, args: any, client: PacaAPIViewsClient): Promise<any>;
|
|
15
|
+
//# sourceMappingURL=view-tools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"view-tools.d.ts","sourceRoot":"","sources":["../../src/tools/view-tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oCAAoC,CAAC;AAE/D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AA8F1D;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,EAAE,CA8NrC;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,IAAI,EAAE,CA4H5C;AAqBD;;GAEG;AACH,wBAAsB,cAAc,CACnC,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,GAAG,EACT,MAAM,EAAE,kBAAkB,GACxB,OAAO,CAAC,GAAG,CAAC,CA8Pd"}
|