@alacrity-ai/kbrelaymcp 0.2.0 → 0.3.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/tools/index.js +1 -1
- package/package.json +1 -1
package/dist/tools/index.js
CHANGED
|
@@ -29,7 +29,7 @@ export const allTools = [
|
|
|
29
29
|
// ── Projects ──
|
|
30
30
|
defineTool({
|
|
31
31
|
name: 'list_projects',
|
|
32
|
-
description: 'List projects you can access (admins: all). Each has a code (e.g. OBL) that prefixes ticket keys,
|
|
32
|
+
description: 'List projects you can access (admins: all). Each has a code (e.g. OBL) that prefixes ticket keys, a description (the project\'s purpose/context), a color, and cardCount (total tickets in the project).',
|
|
33
33
|
inputSchema: z.object({ status: z.enum(['active', 'archived']).optional() }),
|
|
34
34
|
handler: (a, c) => c.request('GET', `/v1/projects${qs({ status: a.status })}`),
|
|
35
35
|
}),
|
package/package.json
CHANGED