@taiga-ai/mcp-server 0.2.3-dev.119 → 0.2.3-dev.121

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.js CHANGED
@@ -261,13 +261,13 @@ function registerProjectTools(server, client) {
261
261
  }] };
262
262
  });
263
263
  if (client.hasCapability("projects:read")) {
264
- server.tool("taiga_list_projects", "List projects in the organization. Use this to find the project you are working on so you can read its specification, architecture, and threat model. Can filter by team or status.", {
264
+ server.tool("taiga_list_projects", "List projects in the organization. Use this to find the project you are working on so you can read its specification, architecture, and threat model. Can filter by team; a status filter also exists but no longer distinguishes anything (see its description).", {
265
265
  teamId: z.string().uuid().optional().describe("Filter by team ID -- get team IDs from taiga_list_teams"),
266
266
  status: z.enum([
267
267
  "draft",
268
268
  "active",
269
269
  "archived"
270
- ]).optional().describe("Filter by status (draft = intake in progress, active = development)"),
270
+ ]).optional().describe("Filter by status. Taiga no longer surfaces project status in its UI (PRO-543), so every project is currently \"draft\" and filtering by \"active\" or \"archived\" returns nothing. Omit this unless you are working with data set through the API directly."),
271
271
  limit: z.number().min(1).max(100).optional().describe("Max results (default 25)")
272
272
  }, {
273
273
  readOnlyHint: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ai/mcp-server",
3
- "version": "0.2.3-dev.119",
3
+ "version": "0.2.3-dev.121",
4
4
  "description": "MCP server for Taiga -- gives AI assistants access to documents, skills, and projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -28,13 +28,17 @@ export function registerProjectTools(server: McpServer, client: TaigaClient) {
28
28
  'taiga_list_projects',
29
29
  'List projects in the organization. Use this to find the project you are working on ' +
30
30
  'so you can read its specification, architecture, and threat model. ' +
31
- 'Can filter by team or status.',
31
+ 'Can filter by team; a status filter also exists but no longer distinguishes anything (see its description).',
32
32
  {
33
33
  teamId: z.string().uuid().optional().describe('Filter by team ID -- get team IDs from taiga_list_teams'),
34
34
  status: z
35
35
  .enum(['draft', 'active', 'archived'])
36
36
  .optional()
37
- .describe('Filter by status (draft = intake in progress, active = development)'),
37
+ .describe(
38
+ 'Filter by status. Taiga no longer surfaces project status in its UI (PRO-543), so every ' +
39
+ 'project is currently "draft" and filtering by "active" or "archived" returns nothing. ' +
40
+ 'Omit this unless you are working with data set through the API directly.'
41
+ ),
38
42
  limit: z.number().min(1).max(100).optional().describe('Max results (default 25)'),
39
43
  },
40
44
  { readOnlyHint: true, openWorldHint: false },